dec383eea14b07d33a03e4f0faac29b674434edf
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / ast / ConstantIdentifier.java
1 package net.sourceforge.phpdt.internal.compiler.ast;
2
3 /**
4  * @author Matthieu Casanova
5  */
6 public class ConstantIdentifier extends Expression {
7
8   public char[] name;
9
10   public ConstantIdentifier(char[] name,
11                             int sourceStart,
12                             int sourceEnd) {
13     super(sourceStart, sourceEnd);
14     this.name = name;
15   }
16
17   /**
18    * Return the expression as String.
19    * @return the expression
20    */
21   public String toStringExpression() {
22     return new String(name);
23   }
24 }