Some minor changes
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / ast / ElseIf.java
index 677faf5..b0ff581 100644 (file)
@@ -6,13 +6,13 @@ import java.util.List;
  * An elseif statement.
  * @author Matthieu Casanova
  */
-public class ElseIf extends Statement {
+public final class ElseIf extends Statement {
 
   /** The condition. */
-  public Expression condition;
+  private final Expression condition;
 
   /** The statements. */
-  public Statement[] statements;
+  private final Statement[] statements;
 
   public ElseIf(final Expression condition, final Statement[] statements, final int sourceStart, final int sourceEnd) {
     super(sourceStart, sourceEnd);
@@ -39,6 +39,8 @@ public class ElseIf extends Statement {
 
   /**
    * Get the variables from outside (parameters, globals ...)
+   *
+   * @param list the list where we will put variables
    */
   public void getOutsideVariable(final List list) {
     for (int i = 0; i < statements.length; i++) {
@@ -48,6 +50,8 @@ public class ElseIf extends Statement {
 
   /**
    * get the modified variables.
+   *
+   * @param list the list where we will put variables
    */
   public void getModifiedVariable(final List list) {
     for (int i = 0; i < statements.length; i++) {
@@ -58,6 +62,8 @@ public class ElseIf extends Statement {
 
   /**
    * Get the variables used.
+   *
+   * @param list the list where we will put variables
    */
   public void getUsedVariable(final List list) {
     for (int i = 0; i < statements.length; i++) {