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/FeatureReference.java')
-rw-r--r--extraplugins/alf/org.eclipse.papyrus.alf/src/org/eclipse/papyrus/alf/syntax/expressions/FeatureReference.java42
1 files changed, 0 insertions, 42 deletions
diff --git a/extraplugins/alf/org.eclipse.papyrus.alf/src/org/eclipse/papyrus/alf/syntax/expressions/FeatureReference.java b/extraplugins/alf/org.eclipse.papyrus.alf/src/org/eclipse/papyrus/alf/syntax/expressions/FeatureReference.java
deleted file mode 100644
index 840167f5912..00000000000
--- a/extraplugins/alf/org.eclipse.papyrus.alf/src/org/eclipse/papyrus/alf/syntax/expressions/FeatureReference.java
+++ /dev/null
@@ -1,42 +0,0 @@
-package org.eclipse.papyrus.alf.syntax.expressions;
-
-import org.eclipse.papyrus.alf.syntax.common.ElementReference;
-import org.eclipse.papyrus.alf.syntax.common.SyntaxElement;
-
-public class FeatureReference extends SyntaxElement {
-
- // Synthesized Properties
-
- /*
- * The target expression.
- */
- public Expression expression ;
-
- /*
- * The name of the feature
- */
- public NameBinding nameBinding ;
-
- //Derived Properties
- public ElementReference referent ;
-
- // Constraints
-
- /*
- * The features referenced by a feature reference include the features of the type of the target expression
- * and the association ends of any binary associations whose opposite ends are typed by the type of the
- * target expression.
- */
- public void checkFeatureReferenceReferentDerivation() {
-
- }
-
- /*
- * The target expression of the feature reference may not be untyped, nor may it have a primitive or
- * enumeration type.
- */
- public void checkFeatureReferenceTargetType() {
-
- }
-
-}

Back to the top