1
2
3
4 package net.sourceforge.pmd.lang.ecmascript.ast;
5
6 import org.mozilla.javascript.ast.IfStatement;
7
8 public class ASTIfStatement extends AbstractEcmascriptNode<IfStatement> {
9 public ASTIfStatement(IfStatement ifStatement) {
10 super(ifStatement);
11 }
12
13
14
15
16 public Object jjtAccept(EcmascriptParserVisitor visitor, Object data) {
17 return visitor.visit(this, data);
18 }
19
20 public boolean hasElse() {
21 return node.getElsePart() != null;
22 }
23
24 public EcmascriptNode getCondition() {
25 return (EcmascriptNode) jjtGetChild(0);
26 }
27
28 public EcmascriptNode getThen() {
29 return (EcmascriptNode) jjtGetChild(1);
30 }
31
32 public EcmascriptNode getElse() {
33 return (EcmascriptNode) jjtGetChild(2);
34 }
35 }