/***************************************************************************** * Copyright (c) 2010 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.command; import org.eclipse.core.commands.ExecutionException; import org.eclipse.core.runtime.IAdaptable; import org.eclipse.core.runtime.IProgressMonitor; import org.eclipse.emf.ecore.EObject; import org.eclipse.gmf.runtime.common.core.command.CommandResult; import org.eclipse.gmf.runtime.emf.type.core.commands.EditElementCommand; import org.eclipse.gmf.runtime.emf.type.core.requests.CreateElementRequest; import org.eclipse.gmf.runtime.notation.View; import org.eclipse.papyrus.uml.diagram.common.commands.SemanticAdapter; import org.eclipse.papyrus.uml.diagram.composite.providers.ElementInitializers; import org.eclipse.uml2.uml.Collaboration; import org.eclipse.uml2.uml.CollaborationUse; import org.eclipse.uml2.uml.StructuredClassifier; import org.eclipse.uml2.uml.UMLFactory; /** * This command creates a new CollaborationUse with a specified type. This command is used when a Collaboration is dropped on a Collaboration or a * StructuredClassifier (a new CollabiorationUse is created typed by the dropped Collaboration). */ public class CollaborationUseFromTypeCreateCommand extends EditElementCommand { protected Collaboration collaboration = null; protected StructuredClassifier owner = null; protected CollaborationUse newElement = null; protected SemanticAdapter semanticAdapter; public CollaborationUseFromTypeCreateCommand(CreateElementRequest req, StructuredClassifier owner, Collaboration collaboration, SemanticAdapter semanticAdapter) { super(req.getLabel(), null, req); this.owner = owner; this.collaboration = collaboration; this.semanticAdapter = semanticAdapter; setResult(CommandResult.newOKCommandResult(semanticAdapter)); } protected EObject getElementToEdit() { EObject container = ((CreateElementRequest)getRequest()).getContainer(); if(container instanceof View) { container = ((View)container).getElement(); } if(container != null) { return container; } return owner; } public boolean canExecute() { return true; } protected CommandResult doExecuteWithResult(IProgressMonitor monitor, IAdaptable info) throws ExecutionException { newElement = UMLFactory.eINSTANCE.createCollaborationUse(); StructuredClassifier owner = (StructuredClassifier)getElementToEdit(); owner.getCollaborationUses().add(newElement); newElement.setType(collaboration); ElementInitializers.getInstance().init_CollaborationUse_3071(newElement); ((CreateElementRequest)getRequest()).setNewElement(newElement); semanticAdapter.setElement(newElement); return CommandResult.newOKCommandResult(semanticAdapter); } }