View Javadoc

1   /* Generated By:JJTree: Do not edit this line. ASTBlockStatement.java */
2   
3   package net.sourceforge.pmd.ast;
4   
5   public class ASTBlockStatement extends SimpleNode {
6       public ASTBlockStatement(int id) {
7           super(id);
8       }
9   
10      public ASTBlockStatement(JavaParser p, int id) {
11          super(p, id);
12      }
13  
14  
15      /***
16       * Accept the visitor. *
17       */
18      public Object jjtAccept(JavaParserVisitor visitor, Object data) {
19          return visitor.visit(this, data);
20      }
21  
22      /***
23       * Tells if this BlockStatement is an allocation statement. 
24       * This is done by 
25       * @returns the result of !findChildrenOfType(ASTAllocationExpression.class).isEmpty()
26       */
27      public final boolean isAllocation() {
28          return !findChildrenOfType(ASTAllocationExpression.class).isEmpty();
29      }
30  }