blob: 97c76a1d5956dcbb7931e3c2fbe1f87834539679 [file] [log] [blame]
/*****************************************************************************
* Copyright (c) 2015 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:
*
* Patrick Tessier (patrick.tessier@cea.fr) CEA LIST - Initial API and implementation
*
*****************************************************************************/
package org.eclipse.papyrus.requirements.sysml14.traceability.commands;
import org.eclipse.emf.transaction.RecordingCommand;
import org.eclipse.emf.transaction.TransactionalEditingDomain;
import org.eclipse.uml2.uml.Abstraction;
import org.eclipse.uml2.uml.NamedElement;
import org.eclipse.uml2.uml.UMLFactory;
/**
* This command is used to create an abstraction
*
*/
public class AbstractionCreateCommand extends RecordingCommand {
private NamedElement source;
private NamedElement target;
/**
* Make an abstraction
*
* @param domain
* the domain to execute a transaction
* @param source
* the source of the abstraction (the more concrete element)
* @param target
* the target of the abstraction (the more abstract element)
*
*/
public AbstractionCreateCommand(TransactionalEditingDomain domain, NamedElement source, NamedElement target) {
super(domain, "Create an Abstraction");
this.source = source;
this.target = target;
}
@Override
protected void doExecute() {
Abstraction theAbstraction = UMLFactory.eINSTANCE.createAbstraction();
target.getNearestPackage().getPackagedElements().add(theAbstraction);
theAbstraction.getSuppliers().add(source);
theAbstraction.getClients().add(target);
theAbstraction.setName("RefinementOf_" + this.source.getName());
}
}