Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/infrastructure/values/EANumericalValue.java')
-rw-r--r--extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/infrastructure/values/EANumericalValue.java49
1 files changed, 49 insertions, 0 deletions
diff --git a/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/infrastructure/values/EANumericalValue.java b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/infrastructure/values/EANumericalValue.java
new file mode 100644
index 00000000000..22eb7f7a5e0
--- /dev/null
+++ b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/infrastructure/values/EANumericalValue.java
@@ -0,0 +1,49 @@
+/**
+ */
+package org.eclipse.papyrus.eastadl.infrastructure.values;
+
+
+/**
+ * <!-- begin-user-doc -->
+ * A representation of the model object '<em><b>EA Numerical Value</b></em>'.
+ * <!-- end-user-doc -->
+ *
+ * <p>
+ * The following features are supported:
+ * <ul>
+ * <li>{@link org.eclipse.papyrus.eastadl.infrastructure.values.EANumericalValue#getValue <em>Value</em>}</li>
+ * </ul>
+ * </p>
+ *
+ * @see org.eclipse.papyrus.eastadl.infrastructure.values.ValuesPackage#getEANumericalValue()
+ * @model
+ * @generated
+ */
+public interface EANumericalValue extends EAValue {
+ /**
+ * Returns the value of the '<em><b>Value</b></em>' attribute.
+ * <!-- begin-user-doc -->
+ * <p>
+ * If the meaning of the '<em>Value</em>' attribute isn't clear,
+ * there really should be more of a description here...
+ * </p>
+ * <!-- end-user-doc -->
+ * @return the value of the '<em>Value</em>' attribute.
+ * @see #setValue(Float)
+ * @see org.eclipse.papyrus.eastadl.infrastructure.values.ValuesPackage#getEANumericalValue_Value()
+ * @model dataType="org.eclipse.papyrus.eastadl.infrastructure.datatypes.Numerical" required="true" ordered="false"
+ * @generated
+ */
+ Float getValue();
+
+ /**
+ * Sets the value of the '{@link org.eclipse.papyrus.eastadl.infrastructure.values.EANumericalValue#getValue <em>Value</em>}' attribute.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @param value the new value of the '<em>Value</em>' attribute.
+ * @see #getValue()
+ * @generated
+ */
+ void setValue(Float value);
+
+} // EANumericalValue

Back to the top