Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'extraplugins/alf09/src/org/eclipse/papyrus/alf/syntax/expressions/BitStringUnaryExpression.java')
-rw-r--r--extraplugins/alf09/src/org/eclipse/papyrus/alf/syntax/expressions/BitStringUnaryExpression.java47
1 files changed, 0 insertions, 47 deletions
diff --git a/extraplugins/alf09/src/org/eclipse/papyrus/alf/syntax/expressions/BitStringUnaryExpression.java b/extraplugins/alf09/src/org/eclipse/papyrus/alf/syntax/expressions/BitStringUnaryExpression.java
deleted file mode 100644
index 5f5fbb60a87..00000000000
--- a/extraplugins/alf09/src/org/eclipse/papyrus/alf/syntax/expressions/BitStringUnaryExpression.java
+++ /dev/null
@@ -1,47 +0,0 @@
-package org.eclipse.papyrus.alf.syntax.expressions;
-
-public class BitStringUnaryExpression extends UnaryExpression {
-
- // Derived Properties
- protected boolean isBitStringConversion ;
-
- // Constraints
-
- /*
- * BitString conversion is required if the operand expression of a BitString unary expression has type
- * Integer.
- */
- public void checkBitStringUnaryExpresionIsBitStringConversionDerivation() {
-
- }
-
- /*
- * A BitString unary expression has the same multiplicity lower bound as its operand expression.
- */
- public void checkBitStringUnaryExpressionLowerDerivation() {
-
- }
-
- /*
- * The operand expression of a BitString unary expression must have type BitString or Integer and a
- * multiplicity upper bound of 1.
- */
- public void checkBitStringUnaryExpressionOperand() {
-
- }
-
- /*
- * A BitString unary expression has type BitString.
- */
- public void checkBitStringUnaryExpressionTypeDerivation() {
-
- }
-
- /*
- * A BitString unary expression has a multiplicity upper bound of 1.
- */
- public void checkBitStringUnaryExpressionUpperDerivation() {
-
- }
-
-}

Back to the top