blob: 95775a3c83330a0e16c8a336e9ef9adf3a528456 [file] [log] [blame]
/*****************************************************************************
* Copyright (c) 2016 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:
*
* Mauricio Alferez (mauricio.alferez@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.papyrus.infra.widgets.editors.MultipleValueSelectionDialog;
import org.eclipse.papyrus.infra.widgets.providers.IStaticContentProvider;
import org.eclipse.papyrus.infra.widgets.selectors.ReferenceSelector;
import org.eclipse.papyrus.requirements.sysml14.common.I_SysMLStereotype;
import org.eclipse.papyrus.requirements.sysml14.common.Utils;
import org.eclipse.papyrus.uml.tools.providers.UMLContentProvider;
import org.eclipse.papyrus.uml.tools.providers.UMLLabelProvider;
import org.eclipse.swt.widgets.Display;
import org.eclipse.uml2.uml.Element;
import org.eclipse.uml2.uml.NamedElement;
import org.eclipse.uml2.uml.UMLPackage;
import org.eclipse.uml2.uml.Stereotype;
/**
*
* Creates a set of Refine links based on the model element that refines the the
* requirement(s) selected in a MultipleValueSelectionDialog
*
*/
public class AddRefinesCommand extends RecordingCommand {
protected Element selectedElement;
TransactionalEditingDomain domain;
public AddRefinesCommand(TransactionalEditingDomain domain, Element selectedElement) {
super(domain, "AddRefinesCommand");
this.selectedElement = selectedElement;
this.domain = domain;
}
@Override
protected void doExecute() {
Stereotype reqStereotype = selectedElement.getAppliedStereotype(I_SysMLStereotype.REQUIREMENT_STEREOTYPE);
final IStaticContentProvider provider = new UMLContentProvider(Utils.getToPackage(selectedElement),
UMLPackage.eINSTANCE.getPackage_PackagedElement(), reqStereotype);
ReferenceSelector selector = new ReferenceSelector();
selector.setLabelProvider(new UMLLabelProvider());
selector.setContentProvider(provider);
MultipleValueSelectionDialog dialog = new MultipleValueSelectionDialog(
Display.getDefault().getActiveShell(), selector,
"Choose the requirement(s) refined by " + ((NamedElement) selectedElement).getName());
dialog.setLabelProvider(new UMLLabelProvider());
dialog.create();
if (dialog.open() == org.eclipse.jface.window.Window.OK) {
Object[] result = dialog.getResult();
for (int i = 0; i < result.length; i++) {
Element currentElement = (Element) result[i];
// chosen elements must be requirements
if (currentElement.getAppliedStereotype(I_SysMLStereotype.REQUIREMENT_STEREOTYPE) != null) {
RefinementCreateCommand refinementCreateCommand = new RefinementCreateCommand(domain,
(NamedElement) selectedElement, (NamedElement) currentElement);
refinementCreateCommand.execute();
}
}
}
}
}