1 package net.sourceforge.phpdt.internal.compiler.ast;
4 * The variable superclass.
5 * @author Matthieu Casanova
7 public abstract class AbstractVariable extends Expression {
8 protected AbstractVariable(final int sourceStart, final int sourceEnd) {
9 super(sourceStart, sourceEnd);
13 * This method will return the name of the variable.
14 * @return a string containing the name of the variable.
16 public abstract String getName();