1 /** 2 * BSD-style license; for more info see http://pmd.sourceforge.net/license.html 3 */ 4 /* Generated By:JJTree: Do not edit this line. ASTInput.java Version 4.3 */ 5 /* JavaCCOptions:MULTI=true,NODE_USES_PARSER=true,VISITOR=true,TRACK_TOKENS=false,NODE_PREFIX=AST,NODE_EXTENDS=,NODE_FACTORY=,SUPPORT_CLASS_VISIBILITY_PUBLIC=true */ 6 package net.sourceforge.pmd.lang.plsql.ast; 7 8 import net.sourceforge.pmd.lang.ast.RootNode; 9 10 public 11 class ASTInput extends net.sourceforge.pmd.lang.plsql.ast.AbstractPLSQLNode implements RootNode { 12 public ASTInput(int id) { 13 super(id); 14 } 15 16 public ASTInput(PLSQLParser p, int id) { 17 super(p, id); 18 } 19 20 21 /** Accept the visitor. **/ 22 public Object jjtAccept(PLSQLParserVisitor visitor, Object data) { 23 return visitor.visit(this, data); 24 } 25 } 26 /* JavaCC - OriginalChecksum=dce06d3ff338546c4a77f0075b1ed936 (do not edit this line) */