Skip to main content
aboutsummaryrefslogblamecommitdiffstats
blob: 1734c5828c85c9740835b89ddd8a86782b6d52b8 (plain) (tree)
1
2
3
4
5
6
7
8
9
10


                                                                               
   





                                                                         
                                                                  
                                                                                
                                                    
 
                                                                  
                                                                                        
 





                                                                       







                                                                                                     
  
/*****************************************************************************
 * Copyright (c) 2011 CEA LIST.
 *
 *
 * 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:
 *	Amine EL KOUHEN (CEA LIST/LIFL) - Amine.El-Kouhen@lifl.fr
 *****************************************************************************/
package org.eclipse.papyrus.uml.diagram.deployment;

import org.eclipse.papyrus.infra.gmfdiag.common.GmfEditorFactory;
import org.eclipse.papyrus.uml.diagram.deployment.edit.parts.DeploymentDiagramEditPart;

// TODO: Auto-generated Javadoc
/**
 * A factory for creating DeploymentDiagramEditor objects.
 */
public class DeploymentDiagramEditorFactory extends GmfEditorFactory {

	/**
	 * Instantiates a new deployment diagram editor factory.
	 */
	public DeploymentDiagramEditorFactory() {
		super(UmlDeploymentDiagramForMultiEditor.class, DeploymentDiagramEditPart.MODEL_ID);

	}

}

Back to the top