Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFlorian Noyrit2015-04-28 15:49:56 +0000
committerCamille Letavernier2015-05-05 13:25:58 +0000
commit0b1d841ea93cc87fa6faf0d6c608adc15e37deeb (patch)
tree21e95a00b9621c670f160bc8a95d58feaa8af2bf /plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.common/src/org/eclipse
parentffc44a44d5601c1a8a72efccb923afb670847950 (diff)
downloadorg.eclipse.papyrus-0b1d841ea93cc87fa6faf0d6c608adc15e37deeb.tar.gz
org.eclipse.papyrus-0b1d841ea93cc87fa6faf0d6c608adc15e37deeb.tar.xz
org.eclipse.papyrus-0b1d841ea93cc87fa6faf0d6c608adc15e37deeb.zip
Contributes a reconciler for the class diagram and derivated diagrams
that migrates containmentlinks views from 1.0.0 to 1.0.1 Change-Id: Ifbf982c0d1acd7992efcfa90bfedbb92f0859711 Signed-off-by: Florian Noyrit <florian.noyrit@cea.fr> Signed-off-by: Mickael ADAM <mickael.adam@ALL4TEC.net> Reviewed-on: https://git.eclipse.org/r/46699 Tested-by: Hudson CI Reviewed-by: Camille Letavernier <camille.letavernier@cea.fr>
Diffstat (limited to 'plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.common/src/org/eclipse')
-rw-r--r--plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.common/src/org/eclipse/papyrus/infra/gmfdiag/common/reconciler/DiagramVersioningUtils.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.common/src/org/eclipse/papyrus/infra/gmfdiag/common/reconciler/DiagramVersioningUtils.java b/plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.common/src/org/eclipse/papyrus/infra/gmfdiag/common/reconciler/DiagramVersioningUtils.java
index 662f21861af..d109fc0ac4a 100644
--- a/plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.common/src/org/eclipse/papyrus/infra/gmfdiag/common/reconciler/DiagramVersioningUtils.java
+++ b/plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.common/src/org/eclipse/papyrus/infra/gmfdiag/common/reconciler/DiagramVersioningUtils.java
@@ -33,7 +33,7 @@ public class DiagramVersioningUtils {
* Returns the "current" diagram version. Diagrams with this version don't require the reconciliation until the Papyrus version updates in such a
* way that some diagram needs reconciliation.
* <p/>
- * The current value returned by this method is "1.0.0".
+ * The current value returned by this method is "1.1.0".
* <p/>
* The value itself, howewer, should NOT be used outside of this package to avoid weird dependency issues. Instead, external code should use {@link DiagramVersioningUtils#stampCurrentVersion(Diagram)} and
* {@link DiagramVersioningUtils#createStampCurrentVersionCommand(Diagram)}.
@@ -41,7 +41,7 @@ public class DiagramVersioningUtils {
* This method is intentinally NOT a constant but indeed the method. This method is intentionally private and should NOT be made public.
*/
private static String CURRENT_DIAGRAM_VERSION() {
- return "1.0.0";
+ return "1.1.0";
}
/**

Back to the top