blob: c7b910a7304eb0492867c136c85a77ec698dff00 [file] [log] [blame]
/**
* Copyright (c)2020 CEA LIST, Committer Name, and others.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* CEA LIST - Initial API and implementation
* Gabriel Pedroza (CEA LIST) gabriel.pedroza@cea.fr
*
*/
package org.eclipse.papyrus.pdp4eng.designer.controller.internal.processcreation;
import org.eclipse.uml2.uml.Element;
public interface IProcessCreation {
/**
* create a element from the source inside the owner.
* @param source the source of the creation
* @param owner the owner of the element
* @return result of the creation
*/
public Element createElement(Element source, Element owner);
}