/** * BSD-style license; for more info see http://pmd.sourceforge.net/license.html */ /* Generated By:JJTree: Do not edit this line. ASTTriggerTimingPointSection.java Version 4.1 */ /* JavaCCOptions:MULTI=true,NODE_USES_PARSER=true,VISITOR=true,TRACK_TOKENS=true,NODE_PREFIX=AST,NODE_EXTENDS=,NODE_FACTORY= */ package net.sourceforge.pmd.lang.plsql.ast; import net.sourceforge.pmd.lang.dfa.DFAGraphMethod; public class ASTTriggerTimingPointSection extends AbstractPLSQLNode implements ExecutableCode, DFAGraphMethod { public ASTTriggerTimingPointSection(int id) { super(id); } public ASTTriggerTimingPointSection(PLSQLParser p, int id) { super(p, id); } /** Accept the visitor. **/ public Object jjtAccept(PLSQLParserVisitor visitor, Object data) { return visitor.visit(this, data); } /** * return executable's name. * * @return */ public String getMethodName() { return getImage(); } @Override public String getName() { return getMethodName(); } } /* * JavaCC - OriginalChecksum=ee9e04c0fd739f2d5d61c4eef34c70f6 (do not edit this * line) */