Some minor changes
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / ast / AbstractVariable.java
index f5ed3d9..9a91e22 100644 (file)
@@ -1,16 +1,17 @@
 package net.sourceforge.phpdt.internal.compiler.ast;
 
 /**
- * Created by IntelliJ IDEA.
- * User: Administrateur
- * Date: 9 août 2003
- * Time: 15:57:05
- * To change this template use Options | File Templates.
+ * The variable superclass.
+ * @author Matthieu Casanova
  */
 public abstract class AbstractVariable extends Expression {
-  public AbstractVariable(final int sourceStart, final int sourceEnd) {
+  protected AbstractVariable(final int sourceStart, final int sourceEnd) {
     super(sourceStart, sourceEnd);
   }
 
+  /**
+   * This method will return the name of the variable.
+   * @return a string containing the name of the variable.
+   */
   public abstract String getName();
 }