Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEd Seidewitz2015-05-22 05:05:15 +0000
committerCamille Letavernier2015-05-26 08:27:11 +0000
commit6653e3b70ed3d6f81931a1546a80a53c1250b7af (patch)
treeb8c8f4dd8e28b7d76778a391caa8274cf9ef02fe /plugins/uml/alf/org.eclipse.papyrus.uml.alf/src/org/eclipse
parentb744b51598da15e837e2f1d14e571fad87bf5a8b (diff)
downloadorg.eclipse.papyrus-6653e3b70ed3d6f81931a1546a80a53c1250b7af.tar.gz
org.eclipse.papyrus-6653e3b70ed3d6f81931a1546a80a53c1250b7af.tar.xz
org.eclipse.papyrus-6653e3b70ed3d6f81931a1546a80a53c1250b7af.zip
Bug 466454 - Corrected mapping to properly handle "stub"
classifierBehaviors. Change-Id: Ibf1b4893a8aeaabd4de518c256be96f6e59d8ae2 Signed-off-by: Ed Seidewitz <ed-s@modeldriven.com> Reviewed-on: https://git.eclipse.org/r/48471 Tested-by: Hudson CI Reviewed-by: Jeremie Tatibouet <jeremie.tatibouet@cea.fr> Reviewed-by: Camille Letavernier <camille.letavernier@cea.fr>
Diffstat (limited to 'plugins/uml/alf/org.eclipse.papyrus.uml.alf/src/org/eclipse')
-rw-r--r--plugins/uml/alf/org.eclipse.papyrus.uml.alf/src/org/eclipse/papyrus/uml/alf/Alf.xtext2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/uml/alf/org.eclipse.papyrus.uml.alf/src/org/eclipse/papyrus/uml/alf/Alf.xtext b/plugins/uml/alf/org.eclipse.papyrus.uml.alf/src/org/eclipse/papyrus/uml/alf/Alf.xtext
index 5b9936db02a..729197eefe5 100644
--- a/plugins/uml/alf/org.eclipse.papyrus.uml.alf/src/org/eclipse/papyrus/uml/alf/Alf.xtext
+++ b/plugins/uml/alf/org.eclipse.papyrus.uml.alf/src/org/eclipse/papyrus/uml/alf/Alf.xtext
@@ -212,7 +212,7 @@ ActiveClassDefinitionOrStub returns ActiveClassDefinition :
;
BehaviorClause returns ActivityDefinition :
- body = Block | name = Name // TODO: isStub = true
+ body = Block | name = Name // NOTE: Does not set isStub = true.
;
ActiveClassMember returns Member :

Back to the top