The methods to get variables do not instantiate ArrayList each time, only one is...
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / ast / LabeledStatement.java
index c9730ea..d0f38f0 100644 (file)
@@ -40,25 +40,22 @@ public class LabeledStatement extends Statement {
 
     /**
    * Get the variables from outside (parameters, globals ...)
-   * @return the variables from outside
    */
-  public List getOutsideVariable() {
-    return statement.getOutsideVariable();
+  public void getOutsideVariable(final List list) {
+    statement.getOutsideVariable(list);
   }
 
   /**
    * get the modified variables.
-   * @return the variables modified
    */
-  public List getModifiedVariable() {
-    return statement.getModifiedVariable();
+  public void getModifiedVariable(final List list) {
+    statement.getModifiedVariable(list);
   }
 
   /**
    * Get the variables used.
-   * @return the variables used
    */
-  public List getUsedVariable() {
-    return statement.getUsedVariable();
+  public void getUsedVariable(final List list) {
+    statement.getUsedVariable(list);
   }
 }