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 /** 7 * All nodes that represent an Oracle object. 8 */ 9 public interface OracleObject extends PLSQLNode { 10 11 /** 12 * Gets the name of the Oracle object. 13 * 14 * @return a String representing the name of the Oracle object. 15 */ 16 String getObjectName(); 17 }