blob: fc96c1c9751736b6392b5ae65868ac7d7e3f14c3 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 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.ws.internal.creation.ui.server;
import org.eclipse.jst.ws.internal.consumption.ui.ConsumptionUIMessages;
import org.eclipse.jst.ws.internal.consumption.ui.server.StartServerWidget;
import org.eclipse.wst.command.internal.env.ui.widgets.INamedWidgetContributor;
import org.eclipse.wst.command.internal.env.ui.widgets.WidgetContributor;
import org.eclipse.wst.command.internal.env.ui.widgets.WidgetContributorFactory;
import org.eclipse.wst.server.core.IServer;
public class StartServerWidgetContributor implements INamedWidgetContributor
{
private IServer server_;
public StartServerWidgetContributor( IServer server )
{
server_ = server;
}
public String getDescription()
{
return ConsumptionUIMessages.PAGE_DESC_WS_START_SERVER;
}
public String getName()
{
return "";
}
public String getTitle()
{
return ConsumptionUIMessages.PAGE_TITLE_WS_START_SERVER;
}
public WidgetContributorFactory getWidgetContributorFactory()
{
return new WidgetContributorFactory()
{
public WidgetContributor create()
{
return new StartServerWidget( server_ );
}
};
}
}