blob: f5b864acd89e45a4e1384674bb42d4ebf070d839 [file] [log] [blame]
/**
* <copyright>
*
* Copyright (c) 2009-2010 Thales Corporate Services S.A.S. and other
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-v2.0
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Thales Corporate Services S.A.S - initial API and implementation
* XiaoRu Chen, Soyatec
*
* </copyright>
*/
package org.eclipse.egf.pattern.ui.editors.wizards.pages;
import org.eclipse.egf.model.pattern.Pattern;
import org.eclipse.jface.viewers.ISelection;
import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.Table;
/**
* @author XiaoRu Chen - Soyatec
*
*/
public class ChooseMethodCallPage extends ChooseCallPage {
public ChooseMethodCallPage(Pattern pattern, ISelection selection, Object item) {
super(pattern, selection, item);
}
@Override
protected Table createParentTable() {
return new Table(_container, SWT.MULTI | SWT.BORDER | SWT.V_SCROLL);
}
}