Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/uml/architecture/org.eclipse.papyrus.uml.architecture/src/org/eclipse/papyrus/uml/architecture/UMLDiagramTypes.java')
-rw-r--r--plugins/uml/architecture/org.eclipse.papyrus.uml.architecture/src/org/eclipse/papyrus/uml/architecture/UMLDiagramTypes.java82
1 files changed, 82 insertions, 0 deletions
diff --git a/plugins/uml/architecture/org.eclipse.papyrus.uml.architecture/src/org/eclipse/papyrus/uml/architecture/UMLDiagramTypes.java b/plugins/uml/architecture/org.eclipse.papyrus.uml.architecture/src/org/eclipse/papyrus/uml/architecture/UMLDiagramTypes.java
new file mode 100644
index 00000000000..01efdb4ec4b
--- /dev/null
+++ b/plugins/uml/architecture/org.eclipse.papyrus.uml.architecture/src/org/eclipse/papyrus/uml/architecture/UMLDiagramTypes.java
@@ -0,0 +1,82 @@
+/*****************************************************************************
+ * Copyright (c) 2018 Maged Elaasar, 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:
+ * Maged Elaasar - Initial API and implementation
+ *
+ *****************************************************************************/
+
+package org.eclipse.papyrus.uml.architecture;
+
+/**
+ * The type of UML diagrams
+ *
+ */
+public interface UMLDiagramTypes {
+
+ /**
+ * The type of the activity diagram
+ */
+ public static final String ACTIVITY_DIAGRAM = "PapyrusUMLActivityDiagram";
+
+ /**
+ * The type of the class diagram
+ */
+ public static final String CLASS_DIAGRAM = "PapyrusUMLClassDiagram";
+
+ /**
+ * The type of the communication diagram
+ */
+ public static final String COMMUNICATION_DIAGRAM = "PapyrusUMLCommunicationDiagram";
+
+ /**
+ * The type of the component diagram
+ */
+ public static final String COMPONENT_DIAGRAM = "PapyrusUMLComponentDiagram";
+
+ /**
+ * The type of the composite structure diagram
+ */
+ public static final String COMPOSITE_STRUCTURE_DIAGRAM = "CompositeStructure";
+
+ /**
+ * The type of the deployment diagram
+ */
+ public static final String DEPLOYMENT_DIAGRAM = "PapyrusUMLDeploymentDiagram";
+
+ /**
+ * The type of the interaction overview diagram
+ */
+ public static final String INTERACTION_OVERVIEW_DIAGRAM = "PapyrusUMLInteractionOverviewDiagram";
+
+ /**
+ * The type of the profile diagram
+ */
+ public static final String PROFILE_DIAGRAM = "PapyrusUMLProfileDiagram";
+
+ /**
+ * The type of the sequence diagram
+ */
+ public static final String SEQUENCE_DIAGRAM = "PapyrusUMLSequenceDiagram";
+
+ /**
+ * The type of the state machine diagram
+ */
+ public static final String STATE_MACHINE_DIAGRAM = "PapyrusUMLStateMachineDiagram";
+
+ /**
+ * The type of the timing diagram
+ */
+ public static final String TIMING_DIAGRAM = "PapyrusUMLTimingDiagram";
+
+ /**
+ * The type of the use case diagram
+ */
+ public static final String USE_CASE_DIAGRAM = "UseCase";
+
+}

Back to the top