Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'extraplugins/alf09/src/org/eclipse/papyrus/alf/syntax/expressions/ShiftExpression.java')
-rw-r--r--extraplugins/alf09/src/org/eclipse/papyrus/alf/syntax/expressions/ShiftExpression.java47
1 files changed, 0 insertions, 47 deletions
diff --git a/extraplugins/alf09/src/org/eclipse/papyrus/alf/syntax/expressions/ShiftExpression.java b/extraplugins/alf09/src/org/eclipse/papyrus/alf/syntax/expressions/ShiftExpression.java
deleted file mode 100644
index d842f546dea..00000000000
--- a/extraplugins/alf09/src/org/eclipse/papyrus/alf/syntax/expressions/ShiftExpression.java
+++ /dev/null
@@ -1,47 +0,0 @@
-package org.eclipse.papyrus.alf.syntax.expressions;
-
-public class ShiftExpression extends BinaryExpression {
-
- // Derived Properties
- public boolean isBitStringConversion ;
-
- // Constraints
-
- /*
- * BitString conversion is required if the first operand expression of a shift expression has type Integer.
- */
- public void checkShiftExpressionIsBitStringConversionDerivation() {
-
- }
-
- /*
- * A shift expression has a multiplicity lower bound of 0 if the lower bound if either operand expression is
- * 0 and 1 otherwise.
- */
- public void checkShiftExpressionLowerDerivation() {
-
- }
-
- /*
- * The operands of a shift expression must have type BitString or Integer.
- */
- public void checkShiftExpressionOperands() {
-
- }
-
- /*
- * A shift expression has type BitString.
- */
- public void checkShiftExpressionTypeDerivation() {
-
- }
-
- /*
- * A shift expression has a multiplicity upper bound of 1.
- */
- public void checkShiftExpressionUpperDerivation() {
-
- }
-
-
-}

Back to the top