1 package net.sourceforge.phpdt.internal.compiler.ast;
4 import java.util.ArrayList;
7 * @author Matthieu Casanova
9 public class ConstantIdentifier extends Expression {
13 public ConstantIdentifier(final char[] name,
14 final int sourceStart,
15 final int sourceEnd) {
16 super(sourceStart, sourceEnd);
21 * Return the expression as String.
22 * @return the expression
24 public String toStringExpression() {
25 return new String(name);
29 * Get the variables from outside (parameters, globals ...)
30 * @return the variables from outside
32 public List getOutsideVariable() {
33 return new ArrayList();
37 * get the modified variables.
38 * @return the variables from we change value
40 public List getModifiedVariable() {
41 return new ArrayList();
45 * Get the variables used.
46 * @return the variables used
48 public List getUsedVariable() {
49 return new ArrayList();