Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogblamecommitdiffstats
blob: 288adb7a917f201769c7d504bc47ed22706944f6 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14













                                                                                 


                                                                      


























                                                                       
                                                                                                        




                       
/*******************************************************************************
 * 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.wst.ws.internal.extensions;

import java.util.Vector;

import org.eclipse.wst.command.internal.env.core.ICommandFactory;
import org.eclipse.wst.command.internal.env.core.SimpleCommandFactory;

public class AssembleServiceFragment extends AbstractServiceFragment 
{
  public AssembleServiceFragment()
  {
  }
  
  protected AssembleServiceFragment( AssembleServiceFragment fragment )
  {
	super( fragment );  
  }
  
  public Object clone() 
  {
	return new AssembleServiceFragment();
  }

  public ICommandFactory getICommandFactory() 
  {
	ICommandFactory factory = null;
	
	if( webService_ == null )
	{
	  factory = new SimpleCommandFactory( new Vector() );
	}
	else
	{
	  factory = webService_.assemble( environment_, context_, selection_, project_, earProject_);	
	}
	
	return factory;
  }
}

Back to the top