Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'extraplugins/alf/org.eclipse.papyrus.alf/src/org/eclipse/papyrus/alf/syntax/expressions/SequenceConstructionExpression.java')
-rw-r--r--extraplugins/alf/org.eclipse.papyrus.alf/src/org/eclipse/papyrus/alf/syntax/expressions/SequenceConstructionExpression.java45
1 files changed, 0 insertions, 45 deletions
diff --git a/extraplugins/alf/org.eclipse.papyrus.alf/src/org/eclipse/papyrus/alf/syntax/expressions/SequenceConstructionExpression.java b/extraplugins/alf/org.eclipse.papyrus.alf/src/org/eclipse/papyrus/alf/syntax/expressions/SequenceConstructionExpression.java
deleted file mode 100644
index 36d84c7317c..00000000000
--- a/extraplugins/alf/org.eclipse.papyrus.alf/src/org/eclipse/papyrus/alf/syntax/expressions/SequenceConstructionExpression.java
+++ /dev/null
@@ -1,45 +0,0 @@
-package org.eclipse.papyrus.alf.syntax.expressions;
-
-public class SequenceConstructionExpression extends Expression {
-
- // Synthesized Properties
- public SequenceElements elements ;
- public boolean hasMultiplicity = false ;
- public QualifiedName typeName ;
-
- //Constraints
-
- /*
- * If a sequence construction expression has multiplicity, then its multiplicity lower bound is given by its
- * elements, if this is not empty, and zero otherwise. If a sequence construction expression does not have
- * multiplicity, then its multiplicity lower bound is one.
- */
- public void checkSequenceConstructionExpressionLowerDerivation() {
-
- }
-
- /*
- * The type name of a sequence construction expression must resolve to a non-template classifier. If the
- * expression does not have multiplicity, then this classifier must be the instantiation of a collection class.
- */
- public void checkSequenceConstructionExpressionType() {
-
- }
-
- /*
- * The type of a sequence construction expression is the named type.
- */
- public void checkSequenceConstructionExpressionTypeDerivation() {
-
- }
-
- /*
- * If a sequence construction expression has multiplicity, then its multiplicity upper bound is given by its
- * elements, if this is not empty, and zero otherwise. If a sequence construction expression does not have
- * multiplicity, then its multiplicity upper bound is one.
- */
- public void checkSequenceConstructionExpressionUpperDerivation() {
-
- }
-
-}

Back to the top