Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicolas FAUVERGUE2015-05-31 08:24:23 +0000
committerCamille Letavernier2015-06-05 12:37:23 +0000
commitf0a3862104ac60a7a3181a966d0e51d2dc3abd78 (patch)
tree94475380282ebe1f96e711aeace19c343c32116b /plugins/uml/properties/org.eclipse.papyrus.uml.properties
parente36c7e8cfb7751c53fae3f18ee4ed79b92f3b5e3 (diff)
downloadorg.eclipse.papyrus-f0a3862104ac60a7a3181a966d0e51d2dc3abd78.tar.gz
org.eclipse.papyrus-f0a3862104ac60a7a3181a966d0e51d2dc3abd78.tar.xz
org.eclipse.papyrus-f0a3862104ac60a7a3181a966d0e51d2dc3abd78.zip
Bug 468016: [Properties View] The new (simple) Multiplicity Editor
doesn't work with multi-selection https://bugs.eclipse.org/bugs/show_bug.cgi?id=468016 - Add the aggregattion for the multiple selection of multiplicity elements Change-Id: Ie01271aad6d14833666ec2fca864e5d69f6a0d23 Signed-off-by: Nicolas FAUVERGUE <nicolas.fauvergue@all4tec.net> Reviewed-on: https://git.eclipse.org/r/49032 Tested-by: Hudson CI Reviewed-by: Gabriel Pascual <gabriel.pascual@all4tec.net> Reviewed-by: Camille Letavernier <camille.letavernier@cea.fr>
Diffstat (limited to 'plugins/uml/properties/org.eclipse.papyrus.uml.properties')
-rw-r--r--plugins/uml/properties/org.eclipse.papyrus.uml.properties/src/org/eclipse/papyrus/uml/properties/widgets/MultiplicityDialog.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/uml/properties/org.eclipse.papyrus.uml.properties/src/org/eclipse/papyrus/uml/properties/widgets/MultiplicityDialog.java b/plugins/uml/properties/org.eclipse.papyrus.uml.properties/src/org/eclipse/papyrus/uml/properties/widgets/MultiplicityDialog.java
index bdb3a12f69a..a5fc5453077 100644
--- a/plugins/uml/properties/org.eclipse.papyrus.uml.properties/src/org/eclipse/papyrus/uml/properties/widgets/MultiplicityDialog.java
+++ b/plugins/uml/properties/org.eclipse.papyrus.uml.properties/src/org/eclipse/papyrus/uml/properties/widgets/MultiplicityDialog.java
@@ -130,7 +130,7 @@ public class MultiplicityDialog extends AbstractPropertyEditor {
final List<ReferenceValueFactory> factories = new ArrayList<ReferenceValueFactory>(NuMBER_PROPERTIES_PATH);
factories.add(factory);
factories.add(input.getValueFactory(MULTIPLICITY_LOWER_VALUE_UML_PROPERTY_PATH));
- factories.add(input.getValueFactory(MULTIPLICITY_LOWER_VALUE_UML_PROPERTY_PATH));
+ factories.add(input.getValueFactory(MULTIPLICITY_UPPER_VALUE_UML_PROPERTY_PATH));
editor.setValueFactories(factories);
}

Back to the top