Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPierre-Charles David2016-02-26 14:48:02 +0000
committerPierre-Charles David2016-02-29 15:52:05 +0000
commitf63344c1b5ee3c0d51487bf19e78e5bf20f6e3e4 (patch)
tree952c7b76d136b5f6481fbbcee34dc42a6260ad49
parent40aa7186db922a4ddefa319e92dd968f06f67772 (diff)
downloadorg.eclipse.sirius-f63344c1b5ee3c0d51487bf19e78e5bf20f6e3e4.tar.gz
org.eclipse.sirius-f63344c1b5ee3c0d51487bf19e78e5bf20f6e3e4.tar.xz
org.eclipse.sirius-f63344c1b5ee3c0d51487bf19e78e5bf20f6e3e4.zip
[482528] Fix default rules to ignore multi-valued attributes for now
The EEF text and checkbox widgets can not handle multi-valued attributes for now. Bug: 482528 Change-Id: I43abc40101218cc703431d8fed1c935093910626 Signed-off-by: Pierre-Charles David <pierre-charles.david@obeo.fr>
-rw-r--r--incubation/org.eclipse.sirius.ui.properties/model/properties.xmi4
1 files changed, 2 insertions, 2 deletions
diff --git a/incubation/org.eclipse.sirius.ui.properties/model/properties.xmi b/incubation/org.eclipse.sirius.ui.properties/model/properties.xmi
index 9fa9950f78..056521b4c8 100644
--- a/incubation/org.eclipse.sirius.ui.properties/model/properties.xmi
+++ b/incubation/org.eclipse.sirius.ui.properties/model/properties.xmi
@@ -19,7 +19,7 @@
iterator="eStructuralFeature"
domainClassExpression="aql:self.eClass().eAllStructuralFeatures">
<ifs
- predicateExpression="aql:eStructuralFeature.eType = ecore::EString">
+ predicateExpression="aql:eStructuralFeature.eType = ecore::EString and not(eStructuralFeature.many)">
<widget
xsi:type="properties:TextDescription"
labelExpression="aql:eStructuralFeature.name"
@@ -32,7 +32,7 @@
</widget>
</ifs>
<ifs
- predicateExpression="aql:eStructuralFeature.eType = ecore::EBoolean">
+ predicateExpression="aql:eStructuralFeature.eType = ecore::EBoolean and not(eStructuralFeature.many)">
<widget
xsi:type="properties:CheckboxDescription"
labelExpression="aql:eStructuralFeature.name"

Back to the top