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

This page was automatically generated by Maven