KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > sourceforge > pmd > ast > ASTBooleanLiteral


1 /* Generated By:JJTree: Do not edit this line. ASTBooleanLiteral.java */
2
3 package net.sourceforge.pmd.ast;
4
5 public class ASTBooleanLiteral extends SimpleJavaNode {
6     public ASTBooleanLiteral(int id) {
7         super(id);
8     }
9
10     public ASTBooleanLiteral(JavaParser p, int id) {
11         super(p, id);
12     }
13
14     private boolean isTrue;
15
16     public void setTrue() {
17         isTrue = true;
18     }
19
20     public boolean isTrue() {
21         return this.isTrue;
22     }
23
24
25     /**
26      * Accept the visitor. *
27      */

28     public Object JavaDoc jjtAccept(JavaParserVisitor visitor, Object JavaDoc data) {
29         return visitor.visit(this, data);
30     }
31
32     public void dump(String JavaDoc prefix) {
33         String JavaDoc out = isTrue ? "true" : "false";
34         System.out.println(toString(prefix) + ":" + out);
35         dumpChildren(prefix);
36     }
37
38 }
39
Popular Tags