--- /dev/null
+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.
+ */
+public abstract class AbstractVariable extends Expression {
+ public AbstractVariable(final int sourceStart, final int sourceEnd) {
+ super(sourceStart, sourceEnd);
+ }
+
+ public abstract String getName();
+}