1 2 3 package net.sourceforge.pmd.ast; 4 5 public class ASTBlockStatement extends SimpleJavaNode { 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 18 public Object jjtAccept(JavaParserVisitor visitor, Object data) { 19 return visitor.visit(this, data); 20 } 21 22 28 public final boolean isAllocation() { 29 return !findChildrenOfType(ASTAllocationExpression.class).isEmpty(); 30 } 31 } 32 | Popular Tags |