diff options
author | jeremie.tatibouet | 2015-05-04 08:54:34 +0000 |
---|---|---|
committer | Arnaud Cuccuru | 2015-05-05 16:46:19 +0000 |
commit | 42736e1a70828172709c7244728057d7d7d6072c (patch) | |
tree | 993c6dbb3f3f803e2e2b9ff1a43b79e0ed311373 /extraplugins/alf/ui/org.eclipse.papyrus.uml.alf.properties.xtext | |
parent | 5651d1152261a21c2834d2a5b65e8d3213a4aac4 (diff) | |
download | org.eclipse.papyrus-42736e1a70828172709c7244728057d7d7d6072c.tar.gz org.eclipse.papyrus-42736e1a70828172709c7244728057d7d7d6072c.tar.xz org.eclipse.papyrus-42736e1a70828172709c7244728057d7d7d6072c.zip |
Enable ALF editor when an activity is selected
Change-Id: I03337898021da86716da0b208adc595513209f86
Signed-off-by: jeremie.tatibouet <jeremie.tatibouet@cea.fr>
Reviewed-on: https://git.eclipse.org/r/47152
Tested-by: Hudson CI
Reviewed-by: Arnaud Cuccuru <arnaud.cuccuru@cea.fr>
Tested-by: Arnaud Cuccuru <arnaud.cuccuru@cea.fr>
Diffstat (limited to 'extraplugins/alf/ui/org.eclipse.papyrus.uml.alf.properties.xtext')
-rw-r--r-- | extraplugins/alf/ui/org.eclipse.papyrus.uml.alf.properties.xtext/src/org/eclipse/papyrus/uml/alf/properties/xtext/sheet/AlfEditorPropertySectionFilter.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/extraplugins/alf/ui/org.eclipse.papyrus.uml.alf.properties.xtext/src/org/eclipse/papyrus/uml/alf/properties/xtext/sheet/AlfEditorPropertySectionFilter.java b/extraplugins/alf/ui/org.eclipse.papyrus.uml.alf.properties.xtext/src/org/eclipse/papyrus/uml/alf/properties/xtext/sheet/AlfEditorPropertySectionFilter.java index 151c3b47c31..c704aa1e25b 100644 --- a/extraplugins/alf/ui/org.eclipse.papyrus.uml.alf.properties.xtext/src/org/eclipse/papyrus/uml/alf/properties/xtext/sheet/AlfEditorPropertySectionFilter.java +++ b/extraplugins/alf/ui/org.eclipse.papyrus.uml.alf.properties.xtext/src/org/eclipse/papyrus/uml/alf/properties/xtext/sheet/AlfEditorPropertySectionFilter.java @@ -71,6 +71,8 @@ public class AlfEditorPropertySectionFilter implements IFilter { return true;
}else if(FUMLScopeUtil.isAssociation(element)){
return true;
+ }else if(FUMLScopeUtil.isActivity(element)){
+ return true;
}
return false;
}
|