Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorglefur2012-05-10 16:16:30 +0000
committerglefur2012-05-10 16:16:30 +0000
commite9c62bdee0e88055b6ea3fa68d6223a104c16bfa (patch)
treeac095961f403b185b02b0df10c5084f40c579d8d /plugins
parent341fd7ecc04c97cdedcf3f8a9de9149d7bb62d20 (diff)
downloadorg.eclipse.eef-e9c62bdee0e88055b6ea3fa68d6223a104c16bfa.tar.gz
org.eclipse.eef-e9c62bdee0e88055b6ea3fa68d6223a104c16bfa.tar.xz
org.eclipse.eef-e9c62bdee0e88055b6ea3fa68d6223a104c16bfa.zip
FIXED: rawtype for MVE
Diffstat (limited to 'plugins')
-rw-r--r--plugins/org.eclipse.emf.eef.codegen/src/org/eclipse/emf/eef/codegen/widgets/impl/multivaluededitor/multivaluededitorControl.mtl2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.emf.eef.codegen/src/org/eclipse/emf/eef/codegen/widgets/impl/multivaluededitor/multivaluededitorControl.mtl b/plugins/org.eclipse.emf.eef.codegen/src/org/eclipse/emf/eef/codegen/widgets/impl/multivaluededitor/multivaluededitorControl.mtl
index 08b059fbe..f6b0744b6 100644
--- a/plugins/org.eclipse.emf.eef.codegen/src/org/eclipse/emf/eef/codegen/widgets/impl/multivaluededitor/multivaluededitorControl.mtl
+++ b/plugins/org.eclipse.emf.eef.codegen/src/org/eclipse/emf/eef/codegen/widgets/impl/multivaluededitor/multivaluededitorControl.mtl
@@ -20,7 +20,7 @@
[comment ===== Case : model = Attribute(*) - view = MultiValuedEditor ===== /]
[template public declareEObjectUpdater(editionElement : PropertiesEditionElement, view : View, pec : PropertiesEditionComponent) overrides declareEObjectUpdater ? (editionElement.model.isAttributeMany() and editionElement.representationName('MultiValuedEditor') and not editionElement.canGeneratemodelNavigation())]if (event.getKind() == [include('org.eclipse.emf.eef.runtime.impl.notify.PropertiesEditionEvent')/].SET) {
[pec.pecModelClass().toJavaIdentifier().disambiguation('event')/].get[editionElement.model.name.toMany().toUpperFirst()/]().clear();
- [pec.pecModelClass().toJavaIdentifier().disambiguation('event')/].get[editionElement.model.name.toMany().toUpperFirst()/]().addAll((([include('org.eclipse.emf.common.util.EList')/]<?>) event.getNewValue()));
+ [pec.pecModelClass().toJavaIdentifier().disambiguation('event')/].get[editionElement.model.name.toMany().toUpperFirst()/]().addAll((([include('org.eclipse.emf.common.util.EList')/]<Object>) event.getNewValue()));
}
[/template]

Back to the top