Beispiel #1
0
 /**
  * Search to see if a query references the specifed table name.
  *
  * @param name Table name (String) to search for.
  * @param baseTable Whether or not name is for a base table
  * @return true if found, else false
  * @exception StandardException Thrown on error
  */
 public boolean referencesTarget(String name, boolean baseTable) throws StandardException {
   return (!baseTable) && name.equals(methodCall.getJavaClassName());
 }