blob: b2fcf7a3a73c2379b354053ea2ac5a1917f5f34a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 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.wst.server.ui.internal.wizard.fragment;
import java.util.List;
import org.eclipse.wst.server.core.IModule;
import org.eclipse.wst.server.core.IModuleArtifact;
import org.eclipse.wst.server.core.IServer;
import org.eclipse.wst.server.ui.internal.wizard.WizardTaskUtil;
import org.eclipse.wst.server.ui.wizard.WizardFragment;
/**
* A fragment used for the Run on Server wizard.
*/
public class RunOnServerWizardFragment extends WizardFragment {
protected IServer server;
protected IModule module;
protected IModuleArtifact moduleArtifact;
/**
* Create the Run on Server wizard with all pages.
*
* @param module
* @param launchMode
* @param moduleArtifact
*/
public RunOnServerWizardFragment(IModule module, String launchMode, IModuleArtifact moduleArtifact) {
super();
this.module = module;
this.moduleArtifact = moduleArtifact;
}
/**
* Create the Run on Server wizard with a default server.
*
* @param server a server
* @param launchMode
* @param moduleArtifact
*/
public RunOnServerWizardFragment(IServer server, String launchMode, IModuleArtifact moduleArtifact) {
super();
this.server = server;
this.moduleArtifact = moduleArtifact;
}
protected void createChildFragments(List<WizardFragment> list) {
if (server == null) {
list.add(new NewServerWizardFragment(module));
list.add(WizardTaskUtil.TempSaveRuntimeFragment);
list.add(WizardTaskUtil.TempSaveServerFragment);
list.add(new ModifyModulesWizardFragment(module));
}
list.add(new TasksWizardFragment());
list.add(WizardTaskUtil.SaveRuntimeFragment);
list.add(WizardTaskUtil.SaveServerFragment);
if (server == null)
list.add(WizardTaskUtil.SaveHostnameFragment);
list.add(new OptionalClientWizardFragment(moduleArtifact));
}
}