blob: 39902c82ad439dfefa3bfcf368cf790b8a094edf [file] [log] [blame]
/**
* <copyright>
*
* Copyright (c) 2009-2010 Thales Corporate Services S.A.S. and other
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* 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 eidtItem) {
super(pattern, selection, eidtItem);
}
@Override
protected Table createParentTable() {
Table listTable = new Table(container, SWT.V_SCROLL | SWT.H_SCROLL | SWT.BORDER | SWT.MULTI);
return listTable;
}
}