blob: a282a2987499bf537b64b9081e511ae8481f4c01 [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;
/**
*
* Creates a set of Refine links based on a requirement that is refined by the
* model element(s) selected in a MultipleValueSelectionDialog
*
*/
public class AddRefinedByCommand extends RecordingCommand {
protected Element selectedElement;
TransactionalEditingDomain domain;
public AddRefinedByCommand(TransactionalEditingDomain domain, Element selectedElement) {
super(domain, "AddRefinedByCommand");
this.selectedElement = selectedElement;
this.domain = domain;
}
@Override
protected void doExecute() {
final IStaticContentProvider provider = new UMLContentProvider(Utils.getToPackage(selectedElement),
UMLPackage.eINSTANCE.getPackage_PackagedElement());
ReferenceSelector selector = new ReferenceSelector();
selector.setLabelProvider(new UMLLabelProvider());
selector.setContentProvider(provider);
MultipleValueSelectionDialog dialog = new MultipleValueSelectionDialog(
Display.getDefault().getActiveShell(), selector,
"Choose the model element(s) (for example, use cases) that refine "
+ ((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 cannot be requirements
//if (currentElement.getAppliedStereotype(I_SysMLStereotype.REQUIREMENT_STEREOTYPE) == null) {
RefinementCreateCommand refinementCreateCommand = new RefinementCreateCommand(domain,
(NamedElement) currentElement, (NamedElement) selectedElement);
refinementCreateCommand.execute();
//}
}
}
}
}