Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.menu/src/org/eclipse/papyrus/uml/diagram/menu/actions/handlers/DistributionHandler.java')
-rw-r--r--plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.menu/src/org/eclipse/papyrus/uml/diagram/menu/actions/handlers/DistributionHandler.java114
1 files changed, 57 insertions, 57 deletions
diff --git a/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.menu/src/org/eclipse/papyrus/uml/diagram/menu/actions/handlers/DistributionHandler.java b/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.menu/src/org/eclipse/papyrus/uml/diagram/menu/actions/handlers/DistributionHandler.java
index 9a0c14e338d..5b0469e79a5 100644
--- a/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.menu/src/org/eclipse/papyrus/uml/diagram/menu/actions/handlers/DistributionHandler.java
+++ b/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.menu/src/org/eclipse/papyrus/uml/diagram/menu/actions/handlers/DistributionHandler.java
@@ -1,57 +1,57 @@
-/*****************************************************************************
- * 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:
- * Vincent Lorenzo (CEA LIST) vincent.lorenzo@cea.fr - Initial API and implementation
- *
- *****************************************************************************/
-package org.eclipse.papyrus.uml.diagram.menu.actions.handlers;
-
-import org.eclipse.core.commands.ExecutionException;
-import org.eclipse.gef.commands.Command;
-import org.eclipse.gef.commands.UnexecutableCommand;
-import org.eclipse.papyrus.uml.diagram.common.handlers.ParametricAndListeningHandler;
-import org.eclipse.papyrus.uml.diagram.menu.actions.DistributeLinkNodeAction;
-
-
-/**
- *
- * Handler for the DistributeAction
- *
- */
-public class DistributionHandler extends ParametricAndListeningHandler {
-
- /** the action executed by this handler */
- protected DistributeLinkNodeAction action = null;
-
- /**
- *
- * Constructor.
- *
- */
- public DistributionHandler() {
- super("org.eclipse.papyrus.uml.diagram.menu.commandDistributionParameter"); //$NON-NLS-1$
- }
-
- /**
- *
- * @see org.eclipse.papyrus.uml.diagram.common.handlers.GraphicalCommandHandler#getCommand()
- *
- * @return
- * @throws ExecutionException
- */
- @Override
- protected Command getCommand() {
- super.getCommand();
- this.action = new DistributeLinkNodeAction(this.parameter, getSelectedElements());
- Command cmd = action.getCommand();
- return (cmd == null) ? UnexecutableCommand.INSTANCE : cmd;
- }
-
-}
+/*****************************************************************************
+ * 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:
+ * Vincent Lorenzo (CEA LIST) vincent.lorenzo@cea.fr - Initial API and implementation
+ *
+ *****************************************************************************/
+package org.eclipse.papyrus.uml.diagram.menu.actions.handlers;
+
+import org.eclipse.core.commands.ExecutionException;
+import org.eclipse.gef.commands.Command;
+import org.eclipse.gef.commands.UnexecutableCommand;
+import org.eclipse.papyrus.uml.diagram.common.handlers.ParametricAndListeningHandler;
+import org.eclipse.papyrus.uml.diagram.menu.actions.DistributeLinkNodeAction;
+
+
+/**
+ *
+ * Handler for the DistributeAction
+ *
+ */
+public class DistributionHandler extends ParametricAndListeningHandler {
+
+ /** the action executed by this handler */
+ protected DistributeLinkNodeAction action = null;
+
+ /**
+ *
+ * Constructor.
+ *
+ */
+ public DistributionHandler() {
+ super("org.eclipse.papyrus.uml.diagram.menu.commandDistributionParameter"); //$NON-NLS-1$
+ }
+
+ /**
+ *
+ * @see org.eclipse.papyrus.uml.diagram.common.handlers.GraphicalCommandHandler#getCommand()
+ *
+ * @return
+ * @throws ExecutionException
+ */
+ @Override
+ protected Command getCommand() {
+ super.getCommand();
+ this.action = new DistributeLinkNodeAction(this.parameter, getSelectedElements());
+ Command cmd = action.getCommand();
+ return (cmd == null) ? UnexecutableCommand.INSTANCE : cmd;
+ }
+
+}

Back to the top