/***************************************************************************** * Copyright (c) 2009 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: * Yann Tanguy (CEA LIST) yann.tanguy@cea.fr - Initial API and implementation * *****************************************************************************/ package org.eclipse.papyrus.uml.diagram.composite.custom.edit.policies; import org.eclipse.gef.commands.Command; import org.eclipse.gmf.runtime.emf.type.core.requests.CreateRelationshipRequest; import org.eclipse.papyrus.uml.diagram.composite.custom.edit.command.RoleBindingCreateCommand; import org.eclipse.papyrus.uml.diagram.composite.providers.UMLElementTypes; /** * <pre> * This class provides a custom edit policy used to replace the SEMANTIC_ROLE * generated for the CollaborationUse element (when used in CompositeStructure Diagram) * </pre> */ public class CollaborationUseItemSemanticEditPolicyCN extends org.eclipse.papyrus.uml.diagram.composite.edit.policies.CollaborationUseItemSemanticEditPolicyCN { /** * <pre> * Calls a custom creation command to allow the creation of a RoleBinding linked * to a ConnectableElement. * * {@inheritDoc} * </pre> */ @Override protected Command getStartCreateRelationshipCommand(CreateRelationshipRequest req) { if(UMLElementTypes.Dependency_4017 == req.getElementType()) { return getGEFWrapper(new RoleBindingCreateCommand(req, req.getSource(), req.getTarget())); } return super.getStartCreateRelationshipCommand(req); } /** * <pre> * Calls a custom creation command to allow the creation of a RoleBinding linked * to a ConnectableElement. * * {@inheritDoc} * </pre> */ @Override protected Command getCompleteCreateRelationshipCommand(CreateRelationshipRequest req) { if(UMLElementTypes.Dependency_4017 == req.getElementType()) { return getGEFWrapper(new RoleBindingCreateCommand(req, req.getSource(), req.getTarget())); } return super.getCompleteCreateRelationshipCommand(req); } }