0f26744ea692a41903d90999384b5ef0007e0302
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / ast / AbstractCase.java
1 package net.sourceforge.phpdt.internal.compiler.ast;
2
3 import java.util.List;
4 import java.util.ArrayList;
5
6 /**
7  * Superclass of case statement that we can find in a switch.
8  * @author Matthieu Casanova
9  */
10 public abstract class AbstractCase extends Statement {
11
12   /** The statements in the case. */
13   public Statement[] statements;
14
15   /**
16    * Create a case statement
17    * @param statements the statements array
18    * @param sourceStart the beginning source offset
19    * @param sourceEnd the ending offset
20    */
21   public AbstractCase(final Statement[] statements,
22                       final int sourceStart,
23                       final int sourceEnd) {
24     super(sourceStart, sourceEnd);
25     this.statements = statements;
26   }
27
28
29   /**
30    * Get the variables from outside (parameters, globals ...)
31    */
32   public void getOutsideVariable(final List list) {
33     for (int i = 0; i < statements.length; i++) {
34       statements[i].getOutsideVariable(list);
35     }
36   }
37
38   /**
39    * get the modified variables.
40    */
41   public void getModifiedVariable(final List list) {
42     for (int i = 0; i < statements.length; i++) {
43       statements[i].getModifiedVariable(list);
44     }
45   }
46
47   /**
48    * Get the variables used.
49    */
50   public void getUsedVariable(final List list) {
51     for (int i = 0; i < statements.length; i++) {
52       statements[i].getUsedVariable(list);
53     }
54   }
55 }