blob: fe16145b66dede237e9c93d6b882964d9689cabf [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 2010 Soyatec(http://www.soyatec.com) and others.
* 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:
* Soyatec - initial API and implementation
*******************************************************************************/
package org.eclipse.osbp.vaaclipse.wizards.project;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.pde.internal.ui.wizards.plugin.AbstractFieldData;
import org.eclipse.swt.widgets.Composite;
/**
* The Class E4NewProjectWizardPage.
*/
public class E4NewProjectWizardPage extends org.eclipse.pde.internal.ui.wizards.plugin.NewProjectCreationPage {
/**
* Instantiates a new e4 new project wizard page.
*
* @param pageName
* the page name
* @param data
* the data
* @param fragment
* the fragment
* @param selection
* the selection
*/
public E4NewProjectWizardPage(String pageName, AbstractFieldData data, boolean fragment, IStructuredSelection selection) {
super(pageName, data, fragment, selection);
}
/* (non-Javadoc)
* @see org.eclipse.pde.internal.ui.wizards.plugin.NewProjectCreationPage#createControl(org.eclipse.swt.widgets.Composite)
*/
@Override
public void createControl(Composite parent) {
super.createControl(parent);
fOSGIButton.setSelection(true);
fEclipseButton.setEnabled(false);
fEclipseCombo.setEnabled(false);
}
}