01: /* Generated By:JJTree: Do not edit this line. ASTIfStatement.java */
02:
03: package net.sourceforge.pmd.ast;
04:
05: public class ASTIfStatement extends SimpleJavaNode {
06: public ASTIfStatement(int id) {
07: super (id);
08: }
09:
10: public ASTIfStatement(JavaParser p, int id) {
11: super (p, id);
12: }
13:
14: private boolean hasElse;
15:
16: public void setHasElse() {
17: this .hasElse = true;
18: }
19:
20: public boolean hasElse() {
21: return this .hasElse;
22: }
23:
24: /**
25: * Accept the visitor. *
26: */
27: public Object jjtAccept(JavaParserVisitor visitor, Object data) {
28: return visitor.visit(this , data);
29: }
30:
31: public void dump(String prefix) {
32: System.out.println(toString(prefix) + ":"
33: + (hasElse ? "(has else)" : ""));
34: dumpChildren(prefix);
35: }
36: }
|