blob: 67314af1e5c702745a041d10ffb41dcbe7579436 [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 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.AbstractionCreateCommand;
import org.eclipse.papyrus.requirements.sysml.traceability.commands.AddAbstractionByCommand;
import org.eclipse.uml2.uml.Element;
import org.eclipse.uml2.uml.NamedElement;
/**
* Executes the addition of Abstraction links based on a selected NamedElement
*
*/
public class AddAbstractionByLinkHandler extends PapyrusAbstractHandler {
@Override
public Object execute(ExecutionEvent event) throws ExecutionException {
super.execute(event);
ArrayList<Element> selectedElements = getSelectionSet();
if (selectedElements.size() == 2) {
AbstractionCreateCommand addDerivedLinkReqCommand = new AbstractionCreateCommand(
transactionalEditingDomain, (NamedElement) selectedElements.get(0),
(NamedElement) selectedElements.get(1));
transactionalEditingDomain.getCommandStack().execute(addDerivedLinkReqCommand);
} else {
Element selectedElement = getSelection();
if (selectedElement != null) {
AddAbstractionByCommand addDerivedLinkReqCommand = new AddAbstractionByCommand(
transactionalEditingDomain, selectedElement);
transactionalEditingDomain.getCommandStack().execute(addDerivedLinkReqCommand);
}
}
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;
}
}
}