Some minor changes
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / ast / CastExpression.java
index 6b434d0..8b52822 100644 (file)
@@ -1,19 +1,18 @@
 package net.sourceforge.phpdt.internal.compiler.ast;
 
 import java.util.List;
-import java.util.ArrayList;
 
 /**
  * This is a cast expression.
  * @author Matthieu Casanova
  */
-public class CastExpression extends Expression {
+public final class CastExpression extends Expression {
 
   /** The type in which we cast the expression. */
-  public ConstantIdentifier type;
+  private final ConstantIdentifier type;
 
   /** The expression to be casted. */
-  public Expression expression;
+  private final Expression expression;
 
   /**
    * Create a cast expression.
@@ -45,12 +44,15 @@ public class CastExpression extends Expression {
 
   /**
    * Get the variables from outside (parameters, globals ...)
+   *
+   * @param list the list where we will put variables
    */
-  public void getOutsideVariable(final List list) {
-  }
+  public void getOutsideVariable(final List list) {}
 
   /**
    * get the modified variables.
+   *
+   * @param list the list where we will put variables
    */
   public void getModifiedVariable(final List list) {
     expression.getModifiedVariable(list);
@@ -58,6 +60,8 @@ public class CastExpression extends Expression {
 
   /**
    * Get the variables used.
+   *
+   * @param list the list where we will put variables
    */
   public void getUsedVariable(final List list) {
     expression.getUsedVariable(list);