コード例 #1
0
ファイル: ProfileType.java プロジェクト: tourapp/tourapp
 /** Get the table name. */
 public String getTableNames(boolean bAddQuotes) {
   return (m_tableName == null)
       ? Record.formatTableNames(PROFILE_TYPE_FILE, bAddQuotes)
       : super.getTableNames(bAddQuotes);
 }
コード例 #2
0
ファイル: TourHeaderChain.java プロジェクト: tourapp/tourapp
 /** Get the table name. */
 public String getTableNames(boolean bAddQuotes) {
   return (m_tableName == null)
       ? Record.formatTableNames(TOUR_HEADER_CHAIN_FILE, bAddQuotes)
       : super.getTableNames(bAddQuotes);
 }