View Javadoc
1 /* Generated By:JJTree: Do not edit this line. ASTResultType.java */ 2 3 package net.sourceforge.pmd.ast; 4 5 public class ASTResultType extends SimpleNode { 6 public ASTResultType(int id) { 7 super(id); 8 } 9 10 public ASTResultType(JavaParser p, int id) { 11 super(p, id); 12 } 13 14 public boolean isVoid() { 15 return jjtGetNumChildren() == 0; 16 } 17 18 /*** Accept the visitor. **/ 19 public Object jjtAccept(JavaParserVisitor visitor, Object data) { 20 return visitor.visit(this, data); 21 } 22 }

This page was automatically generated by Maven