Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorptessier2013-06-21 08:00:58 +0000
committerptessier2013-06-21 08:00:58 +0000
commit1eabcb252e09c293005d5a2b082f96eac03fe59e (patch)
treec7441458f42cc780f31f4d8889f1202ee7c5c8b6 /extraplugins
parentb6f57e742ef3ad8410a1036740d6dacf2ccf4b50 (diff)
downloadorg.eclipse.papyrus-1eabcb252e09c293005d5a2b082f96eac03fe59e.tar.gz
org.eclipse.papyrus-1eabcb252e09c293005d5a2b082f96eac03fe59e.tar.xz
org.eclipse.papyrus-1eabcb252e09c293005d5a2b082f96eac03fe59e.zip
382733: [validation] Papyrus shall to compute constraints from the profile at the model level
https://bugs.eclipse.org/bugs/show_bug.cgi?id=382733
Diffstat (limited to 'extraplugins')
-rw-r--r--extraplugins/dsml.validation/org.eclipse.papyrus.dsml.validation.wizard/src/org/eclipse/papyrus/dsml/validation/wizard/ValidationPluginGenerator.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/extraplugins/dsml.validation/org.eclipse.papyrus.dsml.validation.wizard/src/org/eclipse/papyrus/dsml/validation/wizard/ValidationPluginGenerator.java b/extraplugins/dsml.validation/org.eclipse.papyrus.dsml.validation.wizard/src/org/eclipse/papyrus/dsml/validation/wizard/ValidationPluginGenerator.java
index fe7ffaf1363..ca271c658c6 100644
--- a/extraplugins/dsml.validation/org.eclipse.papyrus.dsml.validation.wizard/src/org/eclipse/papyrus/dsml/validation/wizard/ValidationPluginGenerator.java
+++ b/extraplugins/dsml.validation/org.eclipse.papyrus.dsml.validation.wizard/src/org/eclipse/papyrus/dsml/validation/wizard/ValidationPluginGenerator.java
@@ -332,7 +332,7 @@ public class ValidationPluginGenerator {
Set<Stereotype>constrainedStereotype=constraintsManager.getConstraintsOfStereotype().keySet();
for(Iterator<Stereotype> iterator = constrainedStereotype.iterator(); iterator.hasNext();) {
Stereotype stereotype = (Stereotype)iterator.next();
- System.out.println("+--> create clientContext for the stereotype "+stereotype.getName());
+ //("+--> create clientContext for the stereotype "+stereotype.getName());
Element clientContextElement = editor.getPluginEditor().addChild(extension,"clientContext");
clientContextElement.setAttribute(ID,stereotype.getName()+"ClientContext");
Element selectorElement = editor.addChild(clientContextElement, "selector");
@@ -347,7 +347,7 @@ public class ValidationPluginGenerator {
constraintsManager.getValidationRuleMap().get(constraint).getID();
Element subElement = editor.addChild(bindingelement, "constraint");
subElement.setAttribute("ref",projectName+SEPARATOR+constraintsManager.getValidationRuleMap().get(constraint).getID());
- System.out.println("+----> create binding for the constraint "+constraintsManager.getValidationRuleMap().get(constraint).getID());
+ //("+----> create binding for the constraint "+constraintsManager.getValidationRuleMap().get(constraint).getID());
}
}

Back to the top