*** empty log message ***
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / ast / FalseLiteral.java
1 package net.sourceforge.phpdt.internal.compiler.ast;
2
3 import java.util.List;
4 import java.util.ArrayList;
5
6 /**
7  * @author Matthieu Casanova
8  */
9 public class FalseLiteral extends MagicLiteral {
10
11   public static final char[] source = {'f', 'a', 'l', 's', 'e'};
12
13   public FalseLiteral(final int sourceStart, final int sourceEnd) {
14     super(sourceStart, sourceEnd);
15   }
16
17   /**
18    * Return the expression as String.
19    * @return the expression
20    */
21   public String toStringExpression() {
22     return "false";//$NON-NLS-1$
23   }
24
25   public char[] source() {
26     return source;
27   }
28
29   public String toString() {
30     return "false";//$NON-NLS-1$
31   }
32 }