Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicolas FAUVERGUE2018-06-21 08:41:01 +0000
committerNicolas FAUVERGUE2018-06-29 08:23:22 +0000
commit5556afe5736a545f64ddb28b6e8593869a6930da (patch)
treeaa3d3be06b444e5e8d0f76c99256e7dc32963a72 /plugins
parent8499455a09c65a5554157255ba7dca010bdb918d (diff)
downloadorg.eclipse.papyrus-5556afe5736a545f64ddb28b6e8593869a6930da.tar.gz
org.eclipse.papyrus-5556afe5736a545f64ddb28b6e8593869a6930da.tar.xz
org.eclipse.papyrus-5556afe5736a545f64ddb28b6e8593869a6930da.zip
Bug 527001: Custom property view generates 'ppe:InvalidWidget' entries
- Manage multi enumeration as 'MultiReference' instead of 'MultiEnum' that not exists anymore. Change-Id: I456775e1d0a527ed2a4b6ec76903772ee136d7b3 Signed-off-by: Nicolas FAUVERGUE <nicolas.fauvergue@cea.fr>
Diffstat (limited to 'plugins')
-rw-r--r--plugins/views/properties/org.eclipse.papyrus.views.properties/src/org/eclipse/papyrus/views/properties/runtime/ConfigurationManager.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/views/properties/org.eclipse.papyrus.views.properties/src/org/eclipse/papyrus/views/properties/runtime/ConfigurationManager.java b/plugins/views/properties/org.eclipse.papyrus.views.properties/src/org/eclipse/papyrus/views/properties/runtime/ConfigurationManager.java
index 41f97da4298..1e71b42040d 100644
--- a/plugins/views/properties/org.eclipse.papyrus.views.properties/src/org/eclipse/papyrus/views/properties/runtime/ConfigurationManager.java
+++ b/plugins/views/properties/org.eclipse.papyrus.views.properties/src/org/eclipse/papyrus/views/properties/runtime/ConfigurationManager.java
@@ -12,6 +12,7 @@
* Christian W. Damus (CEA) - Support implicit enablement of prototypes of unavailable contexts (CDO)
* Christian W. Damus - bug 482930
* Christian W. Damus - bug 469188
+ * Nicolas FAUVERGUE (CEA LIST) nicolas.fauvergue@cea.fr - Bug 527001
*****************************************************************************/
package org.eclipse.papyrus.views.properties.runtime;
@@ -951,7 +952,7 @@ public class ConfigurationManager implements IInternalConfigurationManager {
propertyEditorName = multiple ? "MultiBoolean" : "BooleanRadio"; //$NON-NLS-1$ //$NON-NLS-2$
break;
case ENUMERATION:
- propertyEditorName = multiple ? "MultiEnum" : "EnumCombo"; //$NON-NLS-1$ //$NON-NLS-2$
+ propertyEditorName = multiple ? "MultiReference" : "EnumCombo"; //$NON-NLS-1$ //$NON-NLS-2$
break;
case INTEGER:
propertyEditorName = multiple ? "MultiInteger" : "IntegerEditor"; //$NON-NLS-1$ //$NON-NLS-2$

Back to the top