Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: a93e6524b11599283bdb32aab056efa8bbce4140 (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
/*****************************************************************************
 * Copyright (c) 2008 Atos Origin.
 *
 *    
 * 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:
 *  Emilien Perico (Atos Origin) emilien.perico@atosorigin.com - Initial API and implementation
 *
 *****************************************************************************/
package org.eclipse.papyrus.diagram.usecase;

import org.eclipse.papyrus.core.adaptor.gmf.GmfEditorFactory;
import org.eclipse.papyrus.diagram.usecase.edit.parts.UseCaseDiagramEditPart;

/**
 * The editor factory to launch the usecase diagram.
 * 
 * @author Emilien Perico
 */
public class UseCaseDiagramEditorFactory extends GmfEditorFactory {

	/**
	 * Instantiates a new use case diagram editor factory.
	 */
	public UseCaseDiagramEditorFactory() {
		super(UmlUseCaseDiagramForMultiEditor.class, UseCaseDiagramEditPart.MODEL_ID);
	}
}

Back to the top