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/ClassificationExpression.java')
-rw-r--r--extraplugins/alf/org.eclipse.papyrus.alf/src/org/eclipse/papyrus/alf/syntax/expressions/ClassificationExpression.java65
1 files changed, 0 insertions, 65 deletions
diff --git a/extraplugins/alf/org.eclipse.papyrus.alf/src/org/eclipse/papyrus/alf/syntax/expressions/ClassificationExpression.java b/extraplugins/alf/org.eclipse.papyrus.alf/src/org/eclipse/papyrus/alf/syntax/expressions/ClassificationExpression.java
deleted file mode 100644
index 5713d13c930..00000000000
--- a/extraplugins/alf/org.eclipse.papyrus.alf/src/org/eclipse/papyrus/alf/syntax/expressions/ClassificationExpression.java
+++ /dev/null
@@ -1,65 +0,0 @@
-package org.eclipse.papyrus.alf.syntax.expressions;
-
-import org.eclipse.papyrus.alf.syntax.common.ElementReference;
-
-public class ClassificationExpression extends UnaryExpression {
-
- // Synthesized Properties
- public QualifiedName typeName ;
-
- // Derived Properties
- public boolean isDirect ;
- public ElementReference referent ;
-
- //Constraints
- /*
- * A classification expression is direct if its operator is "hastype".
- */
- public void checkClassificationExpressionIsDirectDerivation() {
-
- }
-
- /*
- * A classification expression has a multiplicity lower bound that is the same as the lower bound of its
- * operand expression.
- */
- public void checkClassificationExpressionLowerDerivation() {
-
- }
-
- /*
- * The operand expression of a classification expression must have a multiplicity upper bound of 1.
- */
- public void checkClassificationExpressionOperand() {
-
- }
-
- /*
- * The referent of a classification expression is the classifier to which the type name resolves.
- */
- public void checkClassificationExpressionReferentDerivation() {
-
- }
-
- /*
- * A classification expression has type Boolean.
- */
- public void checkClassificationExpressionTypeDerivation() {
-
- }
-
- /*
- * The type name in a classification expression must resolve to a classifier.
- */
- public void checkClassificationExpressionTypeName() {
-
- }
-
- /*
- * A classification expression has a multiplicity upper bound of 1.
- */
- public void checkClassificationExpressionUpperDerivation() {
-
- }
-
-}

Back to the top