Skip to main content
summaryrefslogtreecommitdiffstats
blob: 4a5a76d415394d145951e0873474d5d29e352a90 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/*******************************************************************************
 * 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.consumption.ui.server;

import org.eclipse.jst.ws.internal.consumption.ui.ConsumptionUIMessages;
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 StartClientWidgetContributor implements INamedWidgetContributor 
{
  private IServer      server_;
	  
  public StartClientWidgetContributor( 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_ );
 			 }
	       };
  }
}

Back to the top