*** empty log message ***
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / ast / TrueLiteral.java
index adb4b09..efc37a7 100644 (file)
@@ -1,13 +1,17 @@
 package net.sourceforge.phpdt.internal.compiler.ast;
 
+import java.util.List;
+import java.util.ArrayList;
+
 /**
+ * the true literal.
  * @author Matthieu Casanova
  */
 public class TrueLiteral extends MagicLiteral {
 
   public static final char[] source = {'t', 'r', 'u', 'e'};
 
-  public TrueLiteral(int sourceStart, int sourceEnd) {
+  public TrueLiteral(final int sourceStart, final int sourceEnd) {
     super(sourceStart, sourceEnd);
   }
 
@@ -22,4 +26,8 @@ public class TrueLiteral extends MagicLiteral {
   public String toStringExpression() {
     return "true";//$NON-NLS-1$
   }
+
+  public String toString() {
+    return "true";//$NON-NLS-1$
+  }
 }