blob: 26f9b02f5d8adf35c2f0fe93c7492f2da3677fa0 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 2012 University College London Software Systems Engineering
* 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:
* Bruno Wassermann - initial API and implementation
*******************************************************************************/
package org.eclipse.bpel.runtimes.ui.wizards;
import org.eclipse.bpel.runtimes.IBPELModuleFacetConstants;
import org.eclipse.bpel.runtimes.IRuntimesUIConstants;
import org.eclipse.bpel.runtimes.RuntimesPlugin;
import org.eclipse.swt.SWT;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.ui.PlatformUI;
import org.eclipse.wst.common.frameworks.datamodel.IDataModel;
import org.eclipse.wst.web.ui.internal.wizards.DataModelFacetCreationWizardPage;
/**
* <code>DataModelFacetCreationWizardPage</code> for setting up a new BPEL
* project.
*
* @author Bruno Wassermann, written Jun 29, 2006
*/
public class NewBPELProjectWizardPage1 extends DataModelFacetCreationWizardPage {
public NewBPELProjectWizardPage1(IDataModel dataModel, String pageName) {
super(dataModel, pageName);
//setTitle(org.eclipse.bpel.runtimes.ui.wizards.Messages.NewProjectWizard_1);
//setDescription(org.eclipse.bpel.runtimes.ui.wizards.Messages.NewProjectWizardPage1_1);
setTitle(org.eclipse.bpel.runtimes.ui.wizards.Messages.NewProjectWizard_1);
setDescription(org.eclipse.bpel.runtimes.ui.wizards.Messages.NewProjectWizardPage1_1);
setImageDescriptor(RuntimesPlugin.getPlugin().getImageDescriptor(IRuntimesUIConstants.ICON_NEWPRJ_WIZARD_BANNER));
}
protected String getModuleFacetID() {
return IBPELModuleFacetConstants.BPEL20_PROJECT_FACET;
}
protected String getModuleTypeID() {
return IBPELModuleFacetConstants.BPEL20_MODULE_TYPE;
}
protected Composite createTopLevelComposite(Composite parent) {
Composite top = new Composite(parent, SWT.NONE);
PlatformUI.getWorkbench().getHelpSystem().setHelp(top, getInfopopID());
top.setLayout(new GridLayout());
top.setLayoutData(new GridData(GridData.FILL_BOTH));
createProjectGroup(top);
createServerTargetComposite(top);
// createPrimaryFacetComposite() calls ProjectFacetsManager.getProjectFacet()
// passing it the module type id (as returned by this guy's getModuleTypeID(), see above)
// I have no idea why it's doing that...possibly because there's some kind of module-to-facet ID
// lookup table for which we need to create an entry, but I haven't been able to figure out where
// or how to do that. So...this will have to do for now.
// createPrimaryFacetComposite(top);
createPresetPanel(top);
return top;
}
}