Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThanh Liem PHAN2017-06-09 07:59:04 +0000
committerAnsgar Radermacher2018-11-09 14:26:19 +0000
commitc8eedb0db79272a3b75e8fd75a41936e8f6c62bc (patch)
treea1b187f4254c561ea58d8693154186d702c4214c
parent77fc391a41a4937155ad88f9cd0d8df38e058a44 (diff)
downloadorg.eclipse.papyrus-sysml11-master.tar.gz
org.eclipse.papyrus-sysml11-master.tar.xz
org.eclipse.papyrus-sysml11-master.zip
Bug 515409: [Class Diagram] in the palette we use PrimitiveType and notHEADmaster
simply Primitive https://bugs.eclipse.org/bugs/show_bug.cgi?id=515409 - Use "Primitive" instead of "primitive" in the figure of the element. Change-Id: Iac6ba582e805aef341980fcebb53b7cd180b19ef Signed-off-by: Thanh Liem PHAN <thanhliem.phan@all4tec.net>
-rwxr-xr-xplugins/diagram/org.eclipse.papyrus.sysml.diagram.common/src-gen/org/eclipse/papyrus/uml/diagram/common/figure/PrimitiveTypeFigure.java7
1 files changed, 3 insertions, 4 deletions
diff --git a/plugins/diagram/org.eclipse.papyrus.sysml.diagram.common/src-gen/org/eclipse/papyrus/uml/diagram/common/figure/PrimitiveTypeFigure.java b/plugins/diagram/org.eclipse.papyrus.sysml.diagram.common/src-gen/org/eclipse/papyrus/uml/diagram/common/figure/PrimitiveTypeFigure.java
index 596800a..3da4b50 100755
--- a/plugins/diagram/org.eclipse.papyrus.sysml.diagram.common/src-gen/org/eclipse/papyrus/uml/diagram/common/figure/PrimitiveTypeFigure.java
+++ b/plugins/diagram/org.eclipse.papyrus.sysml.diagram.common/src-gen/org/eclipse/papyrus/uml/diagram/common/figure/PrimitiveTypeFigure.java
@@ -1,5 +1,5 @@
/*****************************************************************************
- * Copyright (c) 2011 CEA LIST.
+ * Copyright (c) 2011, 2017 CEA LIST.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
@@ -7,9 +7,8 @@
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
- *
* CEA LIST - Initial API and implementation
- *
+ * Thanh Liem PHAN (ALL4TEC) thanhliem.phan@all4tec.net - Bug 515409
*****************************************************************************/
package org.eclipse.papyrus.uml.diagram.common.figure;
@@ -21,7 +20,7 @@ import org.eclipse.papyrus.uml.diagram.common.figure.node.ClassifierFigure;
public class PrimitiveTypeFigure extends ClassifierFigure {
public PrimitiveTypeFigure() {
- super("primitive"); //$NON-NLS-1$
+ super("Primitive"); //$NON-NLS-1$
}
@Override

Back to the top