blob: dfaa2c974f480cdde6cc9aba0ad76b9d6cc6773d [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:
*
* CEA LIST - Initial API and implementation
*
*****************************************************************************/
package org.eclipse.papyrus.requirements.sysml.traceability.handlers;
import java.util.ArrayList;
import org.eclipse.core.commands.ExecutionEvent;
import org.eclipse.core.commands.ExecutionException;
import org.eclipse.papyrus.requirements.common.PapyrusAbstractHandler;
import org.eclipse.papyrus.requirements.sysml.traceability.commands.AddRefinedByCommand;
import org.eclipse.papyrus.requirements.sysml.traceability.commands.RefinementCreateCommand;
import org.eclipse.uml2.uml.Element;
import org.eclipse.uml2.uml.NamedElement;
/**
* Executes the addition of Refine links based on a selected requirement
*
*/
public class AddRefinedByLinkHandler extends PapyrusAbstractHandler {
public Object execute(ExecutionEvent event) throws ExecutionException {
super.execute(event);
ArrayList<Element> selectedElements = getSelectionSet();
if (selectedElements.size() == 2) {
RefinementCreateCommand refinementCreateCommand = new RefinementCreateCommand(
transactionalEditingDomain, (NamedElement) selectedElements.get(0),//e.g. a use case
(NamedElement) selectedElements.get(1));
transactionalEditingDomain.getCommandStack().execute(refinementCreateCommand);
} else {
Element selectedElement = getSelection();
if (selectedElement != null) {
AddRefinedByCommand addRefinedByCommand = new AddRefinedByCommand(
transactionalEditingDomain, selectedElement);
transactionalEditingDomain.getCommandStack().execute(addRefinedByCommand);
}
}
return null;
}
/**
*
* @see org.eclipse.core.commands.AbstractHandler#isEnabled()
*
* @return true if the handler is possible
*/
@Override
public boolean isEnabled() {
Element selectedElement = getSelection();
if (selectedElement != null) {
return true;
} else {
return false;
}
}
}