package net.sourceforge.phpdt.internal.compiler.ast; import java.util.List; import java.util.ArrayList; /** * @author Matthieu Casanova */ public class ConstantIdentifier extends Expression { public char[] name; public ConstantIdentifier(final char[] name, final int sourceStart, final int sourceEnd) { super(sourceStart, sourceEnd); this.name = name; } /** * Return the expression as String. * @return the expression */ public String toStringExpression() { return new String(name); } /** * Get the variables from outside (parameters, globals ...) * @return the variables from outside */ public List getOutsideVariable() { return new ArrayList(); } /** * get the modified variables. * @return the variables from we change value */ public List getModifiedVariable() { return new ArrayList(); } /** * Get the variables used. * @return the variables used */ public List getUsedVariable() { return new ArrayList(); } }