Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorashatilov2015-08-27 15:12:05 +0000
committerGerrit Code Review @ Eclipse.org2015-09-11 09:39:15 +0000
commitdd2d53ad77fbde6e1d6b3fcffa44ca07cf68072a (patch)
tree70f84e380b7e31c1e68297e9c86fdcc6d3e46afe /plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.deployment/custom-src/org/eclipse/papyrus/uml/diagram/deployment
parent810498dbe6750ece31e8d09c8f15c09a948f8002 (diff)
downloadorg.eclipse.papyrus-dd2d53ad77fbde6e1d6b3fcffa44ca07cf68072a.tar.gz
org.eclipse.papyrus-dd2d53ad77fbde6e1d6b3fcffa44ca07cf68072a.tar.xz
org.eclipse.papyrus-dd2d53ad77fbde6e1d6b3fcffa44ca07cf68072a.zip
Bug 475948 - deployment specification is missing in deployment diagram
Change-Id: Ic56fb91ba4fed47d310b2fe9ba1543739028e6db Signed-off-by: ashatilov <shatilov@montages.com>
Diffstat (limited to 'plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.deployment/custom-src/org/eclipse/papyrus/uml/diagram/deployment')
-rw-r--r--plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.deployment/custom-src/org/eclipse/papyrus/uml/diagram/deployment/custom/figure/nodes/DeploymentSpecificationFigure.java21
1 files changed, 21 insertions, 0 deletions
diff --git a/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.deployment/custom-src/org/eclipse/papyrus/uml/diagram/deployment/custom/figure/nodes/DeploymentSpecificationFigure.java b/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.deployment/custom-src/org/eclipse/papyrus/uml/diagram/deployment/custom/figure/nodes/DeploymentSpecificationFigure.java
new file mode 100644
index 00000000000..06949078486
--- /dev/null
+++ b/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.deployment/custom-src/org/eclipse/papyrus/uml/diagram/deployment/custom/figure/nodes/DeploymentSpecificationFigure.java
@@ -0,0 +1,21 @@
+/*****************************************************************************
+ * Copyright (c) 2015 CEA LIST and others.
+ *
+ * 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:
+ * CEA LIST - Initial API and implementation
+ *
+ *****************************************************************************/
+
+package org.eclipse.papyrus.uml.diagram.deployment.custom.figure.nodes;
+
+public class DeploymentSpecificationFigure extends ArtifactFigure {
+
+ public DeploymentSpecificationFigure() {
+ super("deployment spec");
+ }
+}

Back to the top