// ===================================================================================
 //                                                                          DisplaySql
 //                                                                          ==========
 public static String convertConditionBean2DisplaySql(
     SqlAnalyzerFactory factory,
     ConditionBean cb,
     String logDateFormat,
     String logTimestampFormat) {
   final String twoWaySql = cb.getSqlClause().getClause();
   return SqlAnalyzer.convertTwoWaySql2DisplaySql(
       factory, twoWaySql, cb, logDateFormat, logTimestampFormat);
 }