/** * BSD-style license; for more info see http://pmd.sourceforge.net/license.html */ /* Generated By:JJTree: Do not edit this line. ASTInput.java Version 4.3 */ /* JavaCCOptions:MULTI=true,NODE_USES_PARSER=true,VISITOR=true,TRACK_TOKENS=false,NODE_PREFIX=AST,NODE_EXTENDS=,NODE_FACTORY=,SUPPORT_CLASS_VISIBILITY_PUBLIC=true */ package net.sourceforge.pmd.lang.plsql.ast; import net.sourceforge.pmd.lang.ast.RootNode; public class ASTInput extends net.sourceforge.pmd.lang.plsql.ast.AbstractPLSQLNode implements RootNode { public ASTInput(int id) { super(id); } public ASTInput(PLSQLParser p, int id) { super(p, id); } /** Accept the visitor. **/ public Object jjtAccept(PLSQLParserVisitor visitor, Object data) { return visitor.visit(this, data); } } /* * JavaCC - OriginalChecksum=dce06d3ff338546c4a77f0075b1ed936 (do not edit this * line) */