1 /** 2 * BSD-style license; for more info see http://pmd.sourceforge.net/license.html 3 */ 4 package net.sourceforge.pmd.lang.plsql.ast; 5 6 import net.sourceforge.pmd.lang.ast.Node; 7 8 /** 9 * Methods required to be considered as an executable piece of code. 10 */ 11 public interface ExecutableCode extends Node { 12 13 /** 14 * Gets the name of the executable: named thus to match {@link net.sourceforge.pmd.lang.java.ast.ASTMethodDeclaration}. 15 * 16 * @return a String representing the name of the method 17 */ 18 String getMethodName(); 19 }