98349e410badfb00140f84cb694c41546a01b506
[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 import java.util.List;
6 import java.util.ArrayList;
7
8 /**
9  * @author Matthieu Casanova
10  */
11 public class FalseLiteral extends MagicLiteral {
12
13   public FalseLiteral(final Token token) {
14     super(token.sourceStart, token.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 String toString() {
26     return "false";//$NON-NLS-1$
27   }
28 }