*** empty log message ***
[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  * Created by IntelliJ IDEA.
5  * User: Administrateur
6  * Date: 9 août 2003
7  * Time: 15:57:05
8  * To change this template use Options | File Templates.
9  */
10 public abstract class AbstractVariable extends Expression {
11   public AbstractVariable(final int sourceStart, final int sourceEnd) {
12     super(sourceStart, sourceEnd);
13   }
14
15   public abstract String getName();
16 }