Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/uml/alf/org.eclipse.papyrus.uml.alf/syntax-gen/org/eclipse/papyrus/uml/alf/LiteralExpression.java')
-rw-r--r--plugins/uml/alf/org.eclipse.papyrus.uml.alf/syntax-gen/org/eclipse/papyrus/uml/alf/LiteralExpression.java71
1 files changed, 71 insertions, 0 deletions
diff --git a/plugins/uml/alf/org.eclipse.papyrus.uml.alf/syntax-gen/org/eclipse/papyrus/uml/alf/LiteralExpression.java b/plugins/uml/alf/org.eclipse.papyrus.uml.alf/syntax-gen/org/eclipse/papyrus/uml/alf/LiteralExpression.java
new file mode 100644
index 00000000000..64bf4da0c88
--- /dev/null
+++ b/plugins/uml/alf/org.eclipse.papyrus.uml.alf/syntax-gen/org/eclipse/papyrus/uml/alf/LiteralExpression.java
@@ -0,0 +1,71 @@
+/**
+ */
+package org.eclipse.papyrus.uml.alf;
+
+import java.math.BigInteger;
+import java.util.Map;
+
+import org.eclipse.emf.common.util.DiagnosticChain;
+
+/**
+ * <!-- begin-user-doc -->
+ * A representation of the model object '<em><b>Literal Expression</b></em>'.
+ * <!-- end-user-doc -->
+ *
+ * <!-- begin-model-doc -->
+ * An expression that comprises a primitive literal.
+ * <!-- end-model-doc -->
+ *
+ *
+ * @see org.eclipse.papyrus.uml.alf.AlfPackage#getLiteralExpression()
+ * @model abstract="true"
+ * @generated
+ */
+public interface LiteralExpression extends Expression {
+ /**
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ *
+ * @model required="true"
+ * annotation="http://www.eclipse.org/emf/2002/Ecore/OCL/Pivot body='1'"
+ * @generated
+ */
+ BigInteger upper();
+
+ /**
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ *
+ * @model required="true"
+ * annotation="http://www.eclipse.org/emf/2002/Ecore/OCL/Pivot body='1'"
+ * @generated
+ */
+ BigInteger lower();
+
+ /**
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * <!-- begin-model-doc -->
+ * The multiplicity upper bound of a literal expression is always 1.
+ * (See the upper() operation.)
+ * <!-- end-model-doc -->
+ *
+ * @model
+ * @generated
+ */
+ boolean literalExpressionUpperDerivation(DiagnosticChain diagnostics, Map<Object, Object> context);
+
+ /**
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * <!-- begin-model-doc -->
+ * The multiplicity lower bound of a literal expression is always 1.
+ * (See the lower() operation.)
+ * <!-- end-model-doc -->
+ *
+ * @model
+ * @generated
+ */
+ boolean literalExpressionLowerDerivation(DiagnosticChain diagnostics, Map<Object, Object> context);
+
+} // LiteralExpression

Back to the top