Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'extraplugins/alf09/src/org/eclipse/papyrus/alf/syntax/expressions/FeatureLeftHandSide.java')
-rw-r--r--extraplugins/alf09/src/org/eclipse/papyrus/alf/syntax/expressions/FeatureLeftHandSide.java42
1 files changed, 42 insertions, 0 deletions
diff --git a/extraplugins/alf09/src/org/eclipse/papyrus/alf/syntax/expressions/FeatureLeftHandSide.java b/extraplugins/alf09/src/org/eclipse/papyrus/alf/syntax/expressions/FeatureLeftHandSide.java
new file mode 100644
index 00000000000..a7f2e9c4533
--- /dev/null
+++ b/extraplugins/alf09/src/org/eclipse/papyrus/alf/syntax/expressions/FeatureLeftHandSide.java
@@ -0,0 +1,42 @@
+package org.eclipse.papyrus.alf.syntax.expressions;
+
+public class FeatureLeftHandSide extends LeftHandSide {
+
+ // Synthesized Properties
+ public FeatureReference feature ;
+
+ // Constraints
+
+ /*
+ * The assignments after a feature left-hand side are the assignments after the expression of the feature
+ * reference or, if there is an index, those after the index expression.
+ */
+ public void checkFeatureLeftHandSideAssignmentAfterDerivation() {
+
+ }
+
+ /*
+ * The assignments before the expression of the feature reference of a feature left-hand side are the
+ * assignments before the feature left-hand side.
+ */
+ public void checkFeatureLeftHandSideAssignmentBeforeDerivation() {
+
+ }
+
+ /*
+ * If a feature left-hand side has an index, then the assignments before the index expression are the
+ * assignments after the expression of the feature reference.
+ */
+ public void checkFeatureLeftHandSideAssignmentsBefore() {
+
+ }
+
+ /*
+ * The expression of the feature reference of a feature left-hand side must have a multiplicity upper bound
+ * of 1.
+ */
+ public void checkFeatureLeftHandSideFeatureExpression() {
+
+ }
+
+}

Back to the top