Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/uml/textedit/org.eclipse.papyrus.uml.textedit.valuespecification.xtext.utils/src/org/eclipse/papyrus/uml/textedit/valuespecification/xtext/utils/commands/MultiplicityLowerValueSetCommand.java')
-rw-r--r--plugins/uml/textedit/org.eclipse.papyrus.uml.textedit.valuespecification.xtext.utils/src/org/eclipse/papyrus/uml/textedit/valuespecification/xtext/utils/commands/MultiplicityLowerValueSetCommand.java129
1 files changed, 129 insertions, 0 deletions
diff --git a/plugins/uml/textedit/org.eclipse.papyrus.uml.textedit.valuespecification.xtext.utils/src/org/eclipse/papyrus/uml/textedit/valuespecification/xtext/utils/commands/MultiplicityLowerValueSetCommand.java b/plugins/uml/textedit/org.eclipse.papyrus.uml.textedit.valuespecification.xtext.utils/src/org/eclipse/papyrus/uml/textedit/valuespecification/xtext/utils/commands/MultiplicityLowerValueSetCommand.java
new file mode 100644
index 00000000000..c0864e398c2
--- /dev/null
+++ b/plugins/uml/textedit/org.eclipse.papyrus.uml.textedit.valuespecification.xtext.utils/src/org/eclipse/papyrus/uml/textedit/valuespecification/xtext/utils/commands/MultiplicityLowerValueSetCommand.java
@@ -0,0 +1,129 @@
+/*****************************************************************************
+ * Copyright (c) 2015 CEA LIST.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Nicolas FAUVERGUE (ALL4TEC) nicolas.fauvergue@all4tec.net - Initial API and implementation
+ *
+ *****************************************************************************/
+
+package org.eclipse.papyrus.uml.textedit.valuespecification.xtext.utils.commands;
+
+import org.eclipse.emf.ecore.EObject;
+import org.eclipse.papyrus.uml.textedit.valuespecification.xtext.umlValueSpecification.AbstractRule;
+import org.eclipse.papyrus.uml.textedit.valuespecification.xtext.umlValueSpecification.LiteralBooleanRule;
+import org.eclipse.papyrus.uml.textedit.valuespecification.xtext.umlValueSpecification.LiteralIntegerOrUnlimitedNaturalRule;
+import org.eclipse.papyrus.uml.textedit.valuespecification.xtext.umlValueSpecification.LiteralNullRule;
+import org.eclipse.papyrus.uml.textedit.valuespecification.xtext.umlValueSpecification.LiteralRealRule;
+import org.eclipse.papyrus.uml.textedit.valuespecification.xtext.umlValueSpecification.LiteralStringRule;
+import org.eclipse.uml2.uml.InstanceValue;
+import org.eclipse.uml2.uml.LiteralBoolean;
+import org.eclipse.uml2.uml.LiteralInteger;
+import org.eclipse.uml2.uml.LiteralReal;
+import org.eclipse.uml2.uml.LiteralString;
+import org.eclipse.uml2.uml.UMLFactory;
+import org.eclipse.uml2.uml.ValueSpecification;
+
+/**
+ * This class allow to define the multiplicity lower ValueSpecification set command which redefine the {@link #createValueSpecification(EObject, EObject, AbstractRule)} for the specific integer creation when the user fill an integer (instead of
+ * UnlimitedNatural).
+ */
+public class MultiplicityLowerValueSetCommand extends AbstractMultiplicityValueSpecificationSetCommand {
+
+ /**
+ * The instance of the class.
+ */
+ private static MultiplicityLowerValueSetCommand instance = new MultiplicityLowerValueSetCommand();
+
+
+ /**
+ * Constructor.
+ */
+ public MultiplicityLowerValueSetCommand() {
+ super();
+ }
+
+ /**
+ * Get the single instance of MultiplicityLowerValueSetCommand.
+ *
+ * @return The single instance of MultiplicityLowerValueSetCommand.
+ */
+ public static MultiplicityLowerValueSetCommand getInstance() {
+ return instance;
+ }
+
+ /**
+ * {@inheritDoc}
+ *
+ * @see org.eclipse.papyrus.uml.textedit.valuespecification.xtext.utils.commands.ValueSpecificationSetCommand#createValueSpecification(org.eclipse.emf.ecore.EObject, org.eclipse.emf.ecore.EObject,
+ * org.eclipse.papyrus.uml.textedit.valuespecification.xtext.umlValueSpecification.AbstractRule)
+ */
+ @Override
+ protected ValueSpecification createValueSpecification(final EObject objectToEdit, final EObject initialValueSpecification, final AbstractRule abstractRule) {
+ ValueSpecification createdValueSpecification = null;
+
+ final EObject value = abstractRule.getValue();
+ if (null != abstractRule.getInstanceSpecification()) {
+ // Create an instance value with specification value
+ createdValueSpecification = UMLFactory.eINSTANCE
+ .createInstanceValue();
+ ((InstanceValue) createdValueSpecification)
+ .setInstance(abstractRule.getInstanceSpecification());
+ } else {
+ if (value instanceof LiteralBooleanRule) {
+ // Create a literal boolean
+ createdValueSpecification = UMLFactory.eINSTANCE
+ .createLiteralBoolean();
+ copyFeatureValues(createdValueSpecification,
+ initialValueSpecification);
+ ((LiteralBoolean) createdValueSpecification)
+ .setValue(Boolean
+ .parseBoolean(((LiteralBooleanRule) value)
+ .getValue()));
+ } else if (value instanceof LiteralIntegerOrUnlimitedNaturalRule) {
+ final LiteralIntegerOrUnlimitedNaturalRule integerValue = (LiteralIntegerOrUnlimitedNaturalRule) value;
+
+ // Always create an integer for the lower value of the multiplicity
+ if(null == integerValue.getUnlimited()){
+ int intValue = integerValue.getValue();
+
+ createdValueSpecification = UMLFactory.eINSTANCE
+ .createLiteralInteger();
+ copyFeatureValues(createdValueSpecification,
+ initialValueSpecification);
+ ((LiteralInteger) createdValueSpecification)
+ .setValue(intValue);
+ }
+ } else if (value instanceof LiteralRealRule) {
+ // Create a literal real
+ createdValueSpecification = UMLFactory.eINSTANCE
+ .createLiteralReal();
+ copyFeatureValues(createdValueSpecification,
+ initialValueSpecification);
+ ((LiteralReal) createdValueSpecification)
+ .setValue(((LiteralRealRule) value).getValue());
+ } else if (value instanceof LiteralNullRule) {
+ // Create a literal null
+ createdValueSpecification = UMLFactory.eINSTANCE
+ .createLiteralNull();
+ copyFeatureValues(createdValueSpecification,
+ initialValueSpecification);
+ } else if (value instanceof LiteralStringRule) {
+ // Create a literal real
+ createdValueSpecification = UMLFactory.eINSTANCE
+ .createLiteralString();
+ copyFeatureValues(createdValueSpecification,
+ initialValueSpecification);
+ ((LiteralString) createdValueSpecification)
+ .setValue(((LiteralStringRule) value).getValue());
+ }
+ }
+
+ return createdValueSpecification;
+ }
+
+}

Back to the top