Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.communication/custom-src/org/eclipse/papyrus/uml/diagram/communication/custom/migration/CommunicationReconcilerForCompartment_1_2_0.java')
-rw-r--r--plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.communication/custom-src/org/eclipse/papyrus/uml/diagram/communication/custom/migration/CommunicationReconcilerForCompartment_1_2_0.java43
1 files changed, 43 insertions, 0 deletions
diff --git a/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.communication/custom-src/org/eclipse/papyrus/uml/diagram/communication/custom/migration/CommunicationReconcilerForCompartment_1_2_0.java b/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.communication/custom-src/org/eclipse/papyrus/uml/diagram/communication/custom/migration/CommunicationReconcilerForCompartment_1_2_0.java
new file mode 100644
index 00000000000..228d30ae7c9
--- /dev/null
+++ b/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.communication/custom-src/org/eclipse/papyrus/uml/diagram/communication/custom/migration/CommunicationReconcilerForCompartment_1_2_0.java
@@ -0,0 +1,43 @@
+/*****************************************************************************
+ * 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:
+ * Mickael ADAM (ALL4TEC) mickael.adam@all4tec.net - Initial API and Implementation
+ *
+ *****************************************************************************/
+package org.eclipse.papyrus.uml.diagram.communication.custom.migration;
+
+import java.util.Arrays;
+import java.util.List;
+
+import org.eclipse.papyrus.infra.gmfdiag.common.reconciler.ReconcilerForCompartment;
+
+/**
+ * Diagram Reconciler for compartment from 1.1.0 to 1.2.0
+ */
+public class CommunicationReconcilerForCompartment_1_2_0 extends ReconcilerForCompartment {
+
+ private static final String InteractionCompartmentEditPart_VISUAL_ID = "7001";
+
+ /** The compartments visual id. */
+ private List<String> compartmentsVisualID = Arrays.asList(
+ InteractionCompartmentEditPart_VISUAL_ID);
+
+ /**
+ * Gets the compartments visual id.
+ *
+ * @return the compartments visual id
+ * @see org.eclipse.papyrus.infra.gmfdiag.common.reconciler.ReconcilerForCompartment#getCompartmentsVisualID()
+ */
+ @Override
+ public List<String> getCompartmentsVisualID() {
+ return compartmentsVisualID;
+ }
+
+}

Back to the top