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