Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.interactionoverview/src/org/eclipse/papyrus/uml/diagram/interactionoverview/edit/commands/DropInteractionWithSnapshotCommand.java')
-rwxr-xr-xplugins/uml/diagram/org.eclipse.papyrus.uml.diagram.interactionoverview/src/org/eclipse/papyrus/uml/diagram/interactionoverview/edit/commands/DropInteractionWithSnapshotCommand.java152
1 files changed, 76 insertions, 76 deletions
diff --git a/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.interactionoverview/src/org/eclipse/papyrus/uml/diagram/interactionoverview/edit/commands/DropInteractionWithSnapshotCommand.java b/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.interactionoverview/src/org/eclipse/papyrus/uml/diagram/interactionoverview/edit/commands/DropInteractionWithSnapshotCommand.java
index 61b4c6d1799..6cc5d03aa5d 100755
--- a/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.interactionoverview/src/org/eclipse/papyrus/uml/diagram/interactionoverview/edit/commands/DropInteractionWithSnapshotCommand.java
+++ b/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.interactionoverview/src/org/eclipse/papyrus/uml/diagram/interactionoverview/edit/commands/DropInteractionWithSnapshotCommand.java
@@ -1,76 +1,76 @@
-/*****************************************************************************
- * Copyright (c) 2013 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
- *
- *****************************************************************************/
-package org.eclipse.papyrus.uml.diagram.interactionoverview.edit.commands;
-
-import java.util.Collections;
-
-import org.eclipse.core.commands.ExecutionException;
-import org.eclipse.core.runtime.IAdaptable;
-import org.eclipse.core.runtime.IProgressMonitor;
-import org.eclipse.emf.transaction.TransactionalEditingDomain;
-import org.eclipse.gef.EditPartViewer;
-import org.eclipse.gef.GraphicalEditPart;
-import org.eclipse.gmf.runtime.common.core.command.CommandResult;
-import org.eclipse.gmf.runtime.diagram.ui.editparts.IGraphicalEditPart;
-import org.eclipse.gmf.runtime.emf.commands.core.command.AbstractTransactionalCommand;
-import org.eclipse.gmf.runtime.notation.Node;
-import org.eclipse.gmf.runtime.notation.View;
-import org.eclipse.papyrus.uml.diagram.common.util.ViewUtils;
-import org.eclipse.papyrus.uml.diagram.interactionoverview.provider.CustomViewProvider;
-import org.eclipse.papyrus.uml.diagram.interactionoverview.utils.CallBehaviorUtil;
-import org.eclipse.papyrus.uml.diagram.interactionoverview.utils.CallBehaviorUtil.CallBehaviorActionType;
-import org.eclipse.uml2.uml.CallBehaviorAction;
-
-public class DropInteractionWithSnapshotCommand extends
- AbstractTransactionalCommand {
-
- protected IGraphicalEditPart parentEditPart;
-
- protected CallBehaviorAction callBehaviorAction;
-
- public DropInteractionWithSnapshotCommand(final TransactionalEditingDomain domain, final IGraphicalEditPart parentEditPart, CallBehaviorAction callBehaviorAction, final String commandLabel) {
- super(domain, commandLabel, Collections.EMPTY_LIST);
- this.parentEditPart = parentEditPart;
- this.callBehaviorAction = callBehaviorAction;
- }
-
- @Override
- protected CommandResult doExecuteWithResult(IProgressMonitor monitor,
- IAdaptable info) throws ExecutionException {
- // creation of the node
- final View containerView = (View) parentEditPart.getModel();
- final Node callBehaviorActionNode = createTargetCallBehaviorView(callBehaviorAction, containerView, -1);
- /*
- * // copy all EAnnotations
- * final Iterator<EAnnotation> iter = this.callBehaviorActionEditPart.getNotationView().getEAnnotations().iterator();
- * while(iter.hasNext()) {
- * final EAnnotation annotation = EcoreUtil.copy(iter.next());
- * callBehaviorActionNode.getEAnnotations().add(annotation);
- * }
- */
- CallBehaviorUtil.setCallBehaviorActionType(callBehaviorAction, getTargetCallBehaviorType());
-
- // select the new callBehaviorAction View
- parentEditPart.refresh();
- ViewUtils.selectInViewer(callBehaviorActionNode, parentEditPart.getViewer());
- return CommandResult.newOKCommandResult(callBehaviorActionNode);
- }
-
- protected Node createTargetCallBehaviorView(
- CallBehaviorAction callBehaviorAction, View containerView, int index) {
- CustomViewProvider viewProvider = new CustomViewProvider();
- return viewProvider.createCallBehaviorAction_InteractionShape(callBehaviorAction, containerView, index, true, this.parentEditPart.getDiagramPreferencesHint());
- }
-
- protected CallBehaviorActionType getTargetCallBehaviorType() {
- return CallBehaviorActionType.snapshot;
- }
-}
+/*****************************************************************************
+ * Copyright (c) 2013 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
+ *
+ *****************************************************************************/
+package org.eclipse.papyrus.uml.diagram.interactionoverview.edit.commands;
+
+import java.util.Collections;
+
+import org.eclipse.core.commands.ExecutionException;
+import org.eclipse.core.runtime.IAdaptable;
+import org.eclipse.core.runtime.IProgressMonitor;
+import org.eclipse.emf.transaction.TransactionalEditingDomain;
+import org.eclipse.gef.EditPartViewer;
+import org.eclipse.gef.GraphicalEditPart;
+import org.eclipse.gmf.runtime.common.core.command.CommandResult;
+import org.eclipse.gmf.runtime.diagram.ui.editparts.IGraphicalEditPart;
+import org.eclipse.gmf.runtime.emf.commands.core.command.AbstractTransactionalCommand;
+import org.eclipse.gmf.runtime.notation.Node;
+import org.eclipse.gmf.runtime.notation.View;
+import org.eclipse.papyrus.uml.diagram.common.util.ViewUtils;
+import org.eclipse.papyrus.uml.diagram.interactionoverview.provider.CustomViewProvider;
+import org.eclipse.papyrus.uml.diagram.interactionoverview.utils.CallBehaviorUtil;
+import org.eclipse.papyrus.uml.diagram.interactionoverview.utils.CallBehaviorUtil.CallBehaviorActionType;
+import org.eclipse.uml2.uml.CallBehaviorAction;
+
+public class DropInteractionWithSnapshotCommand extends
+ AbstractTransactionalCommand {
+
+ protected IGraphicalEditPart parentEditPart;
+
+ protected CallBehaviorAction callBehaviorAction;
+
+ public DropInteractionWithSnapshotCommand(final TransactionalEditingDomain domain, final IGraphicalEditPart parentEditPart, CallBehaviorAction callBehaviorAction, final String commandLabel) {
+ super(domain, commandLabel, Collections.EMPTY_LIST);
+ this.parentEditPart = parentEditPart;
+ this.callBehaviorAction = callBehaviorAction;
+ }
+
+ @Override
+ protected CommandResult doExecuteWithResult(IProgressMonitor monitor,
+ IAdaptable info) throws ExecutionException {
+ // creation of the node
+ final View containerView = (View) parentEditPart.getModel();
+ final Node callBehaviorActionNode = createTargetCallBehaviorView(callBehaviorAction, containerView, -1);
+ /*
+ * // copy all EAnnotations
+ * final Iterator<EAnnotation> iter = this.callBehaviorActionEditPart.getNotationView().getEAnnotations().iterator();
+ * while(iter.hasNext()) {
+ * final EAnnotation annotation = EcoreUtil.copy(iter.next());
+ * callBehaviorActionNode.getEAnnotations().add(annotation);
+ * }
+ */
+ CallBehaviorUtil.setCallBehaviorActionType(callBehaviorAction, getTargetCallBehaviorType());
+
+ // select the new callBehaviorAction View
+ parentEditPart.refresh();
+ ViewUtils.selectInViewer(callBehaviorActionNode, parentEditPart.getViewer());
+ return CommandResult.newOKCommandResult(callBehaviorActionNode);
+ }
+
+ protected Node createTargetCallBehaviorView(
+ CallBehaviorAction callBehaviorAction, View containerView, int index) {
+ CustomViewProvider viewProvider = new CustomViewProvider();
+ return viewProvider.createCallBehaviorAction_InteractionShape(callBehaviorAction, containerView, index, true, this.parentEditPart.getDiagramPreferencesHint());
+ }
+
+ protected CallBehaviorActionType getTargetCallBehaviorType() {
+ return CallBehaviorActionType.snapshot;
+ }
+}

Back to the top