Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'extraplugins/alf09/src/org/eclipse/papyrus/alf/syntax/statements/BreakStatement.java')
-rw-r--r--extraplugins/alf09/src/org/eclipse/papyrus/alf/syntax/statements/BreakStatement.java34
1 files changed, 0 insertions, 34 deletions
diff --git a/extraplugins/alf09/src/org/eclipse/papyrus/alf/syntax/statements/BreakStatement.java b/extraplugins/alf09/src/org/eclipse/papyrus/alf/syntax/statements/BreakStatement.java
deleted file mode 100644
index e60973c4262..00000000000
--- a/extraplugins/alf09/src/org/eclipse/papyrus/alf/syntax/statements/BreakStatement.java
+++ /dev/null
@@ -1,34 +0,0 @@
-package org.eclipse.papyrus.alf.syntax.statements;
-
-public class BreakStatement extends Statement {
-
- // Derived Properties
- public Statement target ;
-
- // Constraints
- /*
- * The target of a break statement may not have a @parallel annotation.
- */
- public void checkBreakStatementNonparallelTarget() {
-
- }
-
- /*
- * The target of a break statement is the innermost switch, while, do or for statement enclosing the break
- * statement.
- */
- public void checkBreakStatementTargetDerivation() {
-
- }
-
- // Helper Operations
-
- /*
- * A break statement may not have any annotations.
- */
- public boolean annotationAllowed (Annotation annotation) {
- return false ;
- }
-
-
-}

Back to the top