Some minor changes
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / ast / WhileStatement.java
index 22edcc6..f98367c 100644 (file)
@@ -6,12 +6,12 @@ import java.util.List;
  * A While statement.
  * @author Matthieu Casanova
  */
-public class WhileStatement extends Statement {
+public final class WhileStatement extends Statement {
 
   /** The condition expression. */
-  public Expression condition;
+  private final Expression condition;
   /** The action of the while. (it could be a block) */
-  public Statement action;
+  private final Statement action;
 
   /**
    * Create a While statement.
@@ -48,6 +48,8 @@ public class WhileStatement extends Statement {
 
   /**
    * Get the variables from outside (parameters, globals ...)
+   *
+   * @param list the list where we will put variables
    */
   public void getOutsideVariable(final List list) {
     condition.getOutsideVariable(list); // todo: check if unuseful
@@ -58,6 +60,8 @@ public class WhileStatement extends Statement {
 
   /**
    * get the modified variables.
+   *
+   * @param list the list where we will put variables
    */
   public void getModifiedVariable(final List list) {
     condition.getModifiedVariable(list);
@@ -68,6 +72,8 @@ public class WhileStatement extends Statement {
 
   /**
    * Get the variables used.
+   *
+   * @param list the list where we will put variables
    */
   public void getUsedVariable(final List list) {
     condition.getUsedVariable(list);