Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'extraplugins/alf09/src/org/eclipse/papyrus/alf/syntax/expressions/SequenceRange.java')
-rw-r--r--extraplugins/alf09/src/org/eclipse/papyrus/alf/syntax/expressions/SequenceRange.java26
1 files changed, 0 insertions, 26 deletions
diff --git a/extraplugins/alf09/src/org/eclipse/papyrus/alf/syntax/expressions/SequenceRange.java b/extraplugins/alf09/src/org/eclipse/papyrus/alf/syntax/expressions/SequenceRange.java
deleted file mode 100644
index ffcfa277489..00000000000
--- a/extraplugins/alf09/src/org/eclipse/papyrus/alf/syntax/expressions/SequenceRange.java
+++ /dev/null
@@ -1,26 +0,0 @@
-package org.eclipse.papyrus.alf.syntax.expressions;
-
-public class SequenceRange extends SequenceElements {
-
- // Synthesized Properties
- public Expression rangeLower ;
- public Expression rangeUpper ;
-
- // Constraints
- /*
- * The multiplicity lower bound of a sequence range is 0.
- */
- public void checkSequenceRangeLowerDerivation() {
-
- }
-
- /*
- * The multiplicity uper bound of a sequence range is * (since it is not possible, in general, to statically
- * determine a more constrained upper bound).
- */
- public void checkSequenceRangeUpperDerivation() {
-
- }
-
-
-}

Back to the top