/** * BSD-style license; for more info see http://pmd.sourceforge.net/license.html */ /* Generated By:JJTree: Do not edit this line. ASTProgramUnit.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 ASTProgramUnit extends AbstractPLSQLNode implements ExecutableCode, OracleObject, DFAGraphMethod { public ASTProgramUnit(int id) { super(id); } public ASTProgramUnit(PLSQLParser p, int id) { super(p, id); } /** Accept the visitor. **/ public Object jjtAccept(PLSQLParserVisitor visitor, Object data) { return visitor.visit(this, data); } /** * Gets the name of the method. * * @return a String representing the name of the method */ @Override public String getMethodName() { ASTMethodDeclarator md = getFirstChildOfType(ASTMethodDeclarator.class); if (md != null) { return md.getImage(); } return null; } @Override public String getName() { return getMethodName(); } /** * Gets the name of the Oracle Object. * * @return a String representing the name of the Oracle Object */ @Override public String getObjectName() { // This _IS_ a schema-level Program Unit if (null == this.jjtGetParent()) { return this.getImage(); } else { return this.getImage(); } } } /* * JavaCC - OriginalChecksum=be7a6f22fbbdc65a66b8033359b677bc (do not edit this * line) */