Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 0f7a3a3cf770bdf887a73abdde11a32b65609a9b (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) 2010 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:
 *  Camille Letavernier (CEA LIST) camille.letavernier@cea.fr - Initial API and implementation
 *****************************************************************************/
package org.eclipse.papyrus.properties.uml.modelelement;

import org.eclipse.emf.ecore.EObject;
import org.eclipse.papyrus.properties.contexts.DataContextElement;
import org.eclipse.papyrus.properties.modelelement.EMFModelElementFactory;
import org.eclipse.papyrus.properties.modelelement.ModelElement;
import org.eclipse.papyrus.properties.uml.util.UMLUtil;

/**
 * A Factory for building ModelElements manipulating UML Objects.
 * 
 * @author Camille Letavernier
 */
public class UMLModelElementFactory extends EMFModelElementFactory {

	@Override
	public ModelElement createFromSource(Object source, DataContextElement context) {
		EObject umlSource = UMLUtil.resolveUMLElement(source);
		return super.createFromSource(umlSource, context);
	}
}

Back to the top