new version with WorkingCopy Management
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / ast / LabeledStatement.java
index c9730ea..3acad54 100644 (file)
@@ -5,11 +5,11 @@ import java.util.List;
 /**
  * @author Matthieu Casanova
  */
-public class LabeledStatement extends Statement {
+public final class LabeledStatement extends Statement {
 
-  public String label;
+  private final String label;
 
-  public Statement statement;
+  private final Statement statement;
 
   public LabeledStatement(final String label,
                           final Statement statement,
@@ -23,6 +23,7 @@ public class LabeledStatement extends Statement {
   /**
    * Return the object into String.
    * It should be overriden
+   * 
    * @return a String
    */
   public String toString() {
@@ -31,6 +32,7 @@ public class LabeledStatement extends Statement {
 
   /**
    * Return the object into String.
+   * 
    * @param tab how many tabs (not used here
    * @return a String
    */
@@ -38,27 +40,30 @@ public class LabeledStatement extends Statement {
     return tabString(tab) + toString();
   }
 
-    /**
+  /**
    * Get the variables from outside (parameters, globals ...)
-   * @return the variables from outside
+   *
+   * @param list the list where we will put variables
    */
-  public List getOutsideVariable() {
-    return statement.getOutsideVariable();
+  public void getOutsideVariable(final List list) {
+    statement.getOutsideVariable(list);
   }
 
   /**
    * get the modified variables.
-   * @return the variables modified
+   *
+   * @param list the list where we will put variables
    */
-  public List getModifiedVariable() {
-    return statement.getModifiedVariable();
+  public void getModifiedVariable(final List list) {
+    statement.getModifiedVariable(list);
   }
 
   /**
    * Get the variables used.
-   * @return the variables used
+   *
+   * @param list the list where we will put variables
    */
-  public List getUsedVariable() {
-    return statement.getUsedVariable();
+  public void getUsedVariable(final List list) {
+    statement.getUsedVariable(list);
   }
 }