Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenoit Maggi2016-07-29 09:10:16 +0000
committerGerrit Code Review @ Eclipse.org2016-07-29 10:34:15 +0000
commit94ee390226ed146e82491dacd7e87e810e7b4d87 (patch)
tree8386dae3026127f2e2524396ccdbac75c1db5086 /plugins/uml/tools/org.eclipse.papyrus.uml.tools.utils/src
parent7951bcc384732367d105872027d649ae2a3cd045 (diff)
downloadorg.eclipse.papyrus-94ee390226ed146e82491dacd7e87e810e7b4d87.tar.gz
org.eclipse.papyrus-94ee390226ed146e82491dacd7e87e810e7b4d87.tar.xz
org.eclipse.papyrus-94ee390226ed146e82491dacd7e87e810e7b4d87.zip
Bug 498865 - Performance issue in StereotypePropertyParser
- filter notification - remove nls warnings - constant (especially custom separator) should be public Change-Id: Ib91485406f8a22f345fed33028f25d422c2c5abe Signed-off-by: Benoit Maggi <benoit.maggi@cea.fr>
Diffstat (limited to 'plugins/uml/tools/org.eclipse.papyrus.uml.tools.utils/src')
-rw-r--r--plugins/uml/tools/org.eclipse.papyrus.uml.tools.utils/src/org/eclipse/papyrus/uml/tools/utils/StereotypeUtil.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/uml/tools/org.eclipse.papyrus.uml.tools.utils/src/org/eclipse/papyrus/uml/tools/utils/StereotypeUtil.java b/plugins/uml/tools/org.eclipse.papyrus.uml.tools.utils/src/org/eclipse/papyrus/uml/tools/utils/StereotypeUtil.java
index 24edfd4c94a..02d2223156b 100644
--- a/plugins/uml/tools/org.eclipse.papyrus.uml.tools.utils/src/org/eclipse/papyrus/uml/tools/utils/StereotypeUtil.java
+++ b/plugins/uml/tools/org.eclipse.papyrus.uml.tools.utils/src/org/eclipse/papyrus/uml/tools/utils/StereotypeUtil.java
@@ -52,13 +52,13 @@ public class StereotypeUtil {
protected static final String QUOTE = "\"";
- protected static final String SPACE_SEPARATOR = "#";
+ public static final String SPACE_SEPARATOR = "#";
- protected static final String EQUAL_SEPARATOR = "=";
+ public static final String EQUAL_SEPARATOR = "=";
- protected static final String PROPERTY_VALUE_SEPARATOR = "|";
+ public static final String PROPERTY_VALUE_SEPARATOR = "|";
- protected static final String SETREOTYPE_WITH_VALUE_SEPARATOR = ";";
+ public static final String SETREOTYPE_WITH_VALUE_SEPARATOR = ";";
protected static final String ST_LEFT = String.valueOf("\u00AB");

Back to the top