161eb675182cd4244c742f443ff63c7929e17304
[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 test.Token;
4
5 /**
6  * @author Matthieu Casanova
7  */
8 public final class FalseLiteral extends MagicLiteral {
9
10   public FalseLiteral(final Token token) {
11     super(token.sourceStart, token.sourceEnd);
12   }
13
14   /**
15    * Return the expression as String.
16    * @return the expression
17    */
18   public String toStringExpression() {
19     return "false";//$NON-NLS-1$
20   }
21
22   public String toString() {
23     return "false";//$NON-NLS-1$
24   }
25 }