Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVincent Lorenzo2016-05-19 11:39:33 +0000
committerVincent Lorenzo2016-05-26 14:56:17 +0000
commitfa3f72f03d8fa062aaaca87ec7cdd6d38bf7146d (patch)
treee527ac12d1ae28d07ce9e1463298b1401abd0bc9 /plugins/infra/gmfdiag
parenta9c0cd13c5ed6a7ba46c7c555081dde5945d6893 (diff)
downloadorg.eclipse.papyrus-fa3f72f03d8fa062aaaca87ec7cdd6d38bf7146d.tar.gz
org.eclipse.papyrus-fa3f72f03d8fa062aaaca87ec7cdd6d38bf7146d.tar.xz
org.eclipse.papyrus-fa3f72f03d8fa062aaaca87ec7cdd6d38bf7146d.zip
Bug 490251 - Sequence diagrams misrendered in Mars https://bugs.eclipse.org/bugs/show_bug.cgi?id=490251
Bug 493874 - [Sequence Diagram] from Luna to Mars: Action Execution Specification are "outside" of the LifeLine - add a specific EAnnotation to the Lifeline Shape allows to fix all the problems - replace some int by double for the calculus of anchor position, but it doesn't seem affect the display Change-Id: I23e04697fb7ef2e6a20b41a56928737c17c2ca97 Signed-off-by: Mickael ADAM <mickael.adam@ALL4TEC.net> Signed-off-by: Vincent Lorenzo <vincent.lorenzo@cea.fr>
Diffstat (limited to 'plugins/infra/gmfdiag')
-rw-r--r--plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.common/src/org/eclipse/papyrus/infra/gmfdiag/common/reconciler/DiagramVersioningUtils.java8
1 files changed, 4 insertions, 4 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 68021a5ec60..4b29ab0c9bd 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
@@ -36,7 +36,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.1.0".
+ * The current value returned by this method is "1.2.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)}.
@@ -44,7 +44,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.2.0";
+ return "1.2.0"; //$NON-NLS-1$
}
/**
@@ -83,13 +83,13 @@ public class DiagramVersioningUtils {
* <p/>
* The value for this constant is "diagram_compatibility_version", it is intentionally the same as been used for SysML diagrams versioning.
*/
- public static final String COMPATIBILITY_VERSION = "diagram_compatibility_version";
+ public static final String COMPATIBILITY_VERSION = "diagram_compatibility_version";//$NON-NLS-1$
/**
* The version constant for the diagrams that does not have a {@link DiagramVersioningUtils#COMPATIBILITY_VERSION} style.
* It may be assumed that these diagrams had been created before Papyrus 1.0.
*/
- public static final String UNDEFINED_VERSION = "undefined";
+ public static final String UNDEFINED_VERSION = "undefined";//$NON-NLS-1$
private static final String DELIM_VERSION = ".";//$NON-NLS-1$

Back to the top