package net.sourceforge.phpdt.internal.compiler.ast; /** * @author Matthieu Casanova */ public class ConstantIdentifier extends Expression { public char[] name; public ConstantIdentifier(char[] name, int sourceStart, int sourceEnd) { super(sourceStart, sourceEnd); this.name = name; } /** * Return the expression as String. * @return the expression */ public String toStringExpression() { return new String(name); } }