Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'deprecated/org.eclipse.papyrus.navigator/src/org/eclipse/papyrus/navigator/actions/CreateDiagramAction.java')
-rw-r--r--deprecated/org.eclipse.papyrus.navigator/src/org/eclipse/papyrus/navigator/actions/CreateDiagramAction.java86
1 files changed, 86 insertions, 0 deletions
diff --git a/deprecated/org.eclipse.papyrus.navigator/src/org/eclipse/papyrus/navigator/actions/CreateDiagramAction.java b/deprecated/org.eclipse.papyrus.navigator/src/org/eclipse/papyrus/navigator/actions/CreateDiagramAction.java
new file mode 100644
index 00000000000..5aa59176931
--- /dev/null
+++ b/deprecated/org.eclipse.papyrus.navigator/src/org/eclipse/papyrus/navigator/actions/CreateDiagramAction.java
@@ -0,0 +1,86 @@
+/*******************************************************************************
+ * Copyright (c) 2009 Obeo.
+ * 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:
+ * Obeo - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.papyrus.navigator.actions;
+
+import static org.eclipse.papyrus.navigator.internal.Activator.log;
+
+import org.eclipse.emf.ecore.EObject;
+import org.eclipse.jface.action.Action;
+import org.eclipse.papyrus.infra.core.extension.NotFoundException;
+import org.eclipse.papyrus.infra.core.extension.commands.CreationCommandDescriptor;
+import org.eclipse.papyrus.infra.core.extension.commands.CreationCommandRegistry;
+import org.eclipse.papyrus.infra.core.extension.commands.ICreationCommand;
+import org.eclipse.papyrus.infra.core.extension.commands.ICreationCommandRegistry;
+import org.eclipse.papyrus.infra.core.utils.EditorUtils;
+
+/**
+ * Action used to create a new diagram for given type
+ *
+ * @author <a href="mailto:jerome.benois@obeo.fr">Jerome Benois</a>
+ */
+public class CreateDiagramAction extends Action {
+
+ private final EObject container;
+
+ private final CreationCommandDescriptor commandDescriptor;
+
+ /**
+ * Constructor
+ *
+ * @param selectedObject
+ * the selected Element on which the diagram is to be associated
+ */
+ public CreateDiagramAction(EObject selectedElement, CreationCommandDescriptor commandDescriptor) {
+ this.container = selectedElement;
+ this.commandDescriptor = commandDescriptor;
+ setText(commandDescriptor.getLabel());
+ setImageDescriptor(commandDescriptor.getIcon());
+ }
+
+ /**
+ * @see org.eclipse.jface.action.Action#isEnabled()
+ */
+ @Override
+ public boolean isEnabled() {
+ return container != null;
+ }
+
+ /**
+ * This methods creates a new Diagram to be associated with the given domain element
+ *
+ * @see org.eclipse.jface.action.Action#run()
+ */
+ @Override
+ public void run() {
+
+ // Start LOG
+ if(log.isDebugEnabled()) {
+ log.debug("Start - CreateDiagramAction#run"); //$NON-NLS-1$
+ }
+
+ try {
+ ICreationCommand creationCommand = getCreationCommandRegistry().getCommand(commandDescriptor.getCommandId());
+ creationCommand.createDiagram(EditorUtils.getDiResourceSet(), container, null);
+ } catch (NotFoundException e) {
+ log.error(e);
+ }
+
+ // END LOG
+ if(log.isDebugEnabled()) {
+ log.debug("End - CreateDiagramAction#run"); //$NON-NLS-1$
+ }
+ }
+
+ private ICreationCommandRegistry getCreationCommandRegistry() {
+ return CreationCommandRegistry.getInstance(org.eclipse.papyrus.infra.core.Activator.PLUGIN_ID);
+ }
+
+}

Back to the top