9a91e22e5f3dd9b11e4f8788c149cc3b50c384fd
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / ast / AbstractVariable.java
1 package net.sourceforge.phpdt.internal.compiler.ast;
2
3 /**
4  * The variable superclass.
5  * @author Matthieu Casanova
6  */
7 public abstract class AbstractVariable extends Expression {
8   protected AbstractVariable(final int sourceStart, final int sourceEnd) {
9     super(sourceStart, sourceEnd);
10   }
11
12   /**
13    * This method will return the name of the variable.
14    * @return a string containing the name of the variable.
15    */
16   public abstract String getName();
17 }