3.x RC1 compatibility
[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
5 /**
6  * Superclass of case statement that we can find in a switch.
7  * @author Matthieu Casanova
8  */
9 public abstract class AbstractCase extends Statement {
10
11   /** The statements in the case. */
12   public final Statement[] statements;
13
14   /**
15    * Create a case statement.
16    * @param statements the statements array
17    * @param sourceStart the beginning source offset
18    * @param sourceEnd the ending offset
19    */
20   protected AbstractCase(final Statement[] statements,
21                          final int sourceStart,
22                          final int sourceEnd) {
23     super(sourceStart, sourceEnd);
24     this.statements = statements;
25   }
26
27
28   /**
29    * Get the variables from outside (parameters, globals ...).
30    * @param list the list where we will put variables
31    */
32   public final 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    * @param list the list where we will put variables
41    */
42   public void getModifiedVariable(final List list) {
43     for (int i = 0; i < statements.length; i++) {
44       statements[i].getModifiedVariable(list);
45     }
46   }
47
48   /**
49    * Get the variables used.
50    * @param list the list where we will put variables
51    */
52   public void getUsedVariable(final List list) {
53     for (int i = 0; i < statements.length; i++) {
54       statements[i].getUsedVariable(list);
55     }
56   }
57 }