Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'extraplugins/alf09/src/org/eclipse/papyrus/alf/syntax/statements/ConcurrentClauses.java')
-rw-r--r--extraplugins/alf09/src/org/eclipse/papyrus/alf/syntax/statements/ConcurrentClauses.java29
1 files changed, 29 insertions, 0 deletions
diff --git a/extraplugins/alf09/src/org/eclipse/papyrus/alf/syntax/statements/ConcurrentClauses.java b/extraplugins/alf09/src/org/eclipse/papyrus/alf/syntax/statements/ConcurrentClauses.java
new file mode 100644
index 00000000000..50c436a71d9
--- /dev/null
+++ b/extraplugins/alf09/src/org/eclipse/papyrus/alf/syntax/statements/ConcurrentClauses.java
@@ -0,0 +1,29 @@
+package org.eclipse.papyrus.alf.syntax.statements;
+
+import java.util.List;
+
+import org.eclipse.papyrus.alf.syntax.common.SyntaxElement;
+
+public class ConcurrentClauses extends SyntaxElement {
+
+ // Synthesized Properties
+ public List<NonFinalClause> clause ;
+
+ // Constraints
+ /*
+ * The assignments before each of the clauses in a set of concurrent clauses are the same as the
+ * assignments before the concurrent clauses.
+ */
+ public void checkConcurrentClausesAssignmentsBefore() {
+
+ }
+
+ /*
+ * The same name may not be assigned in more than one conditional expression within the same
+ * concurrent set of clauses.
+ */
+ public void checkConcurrentClausesConditionAssignments() {
+
+ }
+
+}

Back to the top