blob: d80eca88ba4bcf0721960ba1098191536ebd97fd [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2005 IBM Corporation 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jst.servlet.ui.internal.wizard;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.jst.servlet.ui.internal.plugin.WEBUIMessages;
import org.eclipse.ui.IWorkbench;
import org.eclipse.wst.common.frameworks.datamodel.IDataModel;
public class ConvertToWebComponentTypeWizard extends WebComponentCreationWizard {
private static final String ConvertToWebModuleTypeWizard = "org.eclipse.jst.servlet.ui.internal.wizard.convertWebProjectTypeWizard"; //$NON-NLS-1$
public ConvertToWebComponentTypeWizard(IDataModel dataModel) {
// TODO use flexible project
//super(dataModel);
}
/*
* (non-Javadoc)
*
* @see org.eclipse.jface.wizard.Wizard#addPages()
*/
public void doAddPages() {
//TODO use flexible project
//addPage(new ConvertToWebModuleTypeWizardPage((WebModuleCreationDataModel) model, PAGE_ONE));
}
/*
* (non-Javadoc)
*
* @see com.ibm.wtp.web.ui.wizard.WEBProjectWizard#init(org.eclipse.ui.IWorkbench,
* org.eclipse.jface.viewers.IStructuredSelection)
*/
public void doInit(IWorkbench workbench, IStructuredSelection selection) {
setWindowTitle(WEBUIMessages.getResourceString(WEBUIMessages.WEB_CONVERT_MAIN_PG_TITLE)); //$NON-NLS-1$
}
/*
* (non-Javadoc)
*
* @see org.eclipse.jem.util.ui.wizard.WTPWizard#prePerformFinish()
*/
protected boolean prePerformFinish() {
/* IProjectDescription desc;
try {
//desc = ((WebComponentCreationDataModel) model).getTargetProject().getDescription();
//desc.setBuildSpec(new ICommand[0]);
} catch (CoreException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return super.prePerformFinish();*/
return true;
}
}