198199200201202203204205206207208
{ BuildJob buildJob = (BuildJob) iterator.next(); renderBuildJob( buildJob, locale ); } sink.table_(); sink.body_(); sink.flush(); sink.close();
273274275276277278279280281282283
sinkCell( sink, secondsFormat.format( totalTime ) ); sinkCell( sink, secondsFormat.format( totalTime / number ) ); sink.tableRow_(); sink.table_(); } private void renderBuildJob( BuildJob buildJob, Locale locale ) {
190191192193194195196197198199200
for ( BuildJob buildJob : buildJobs ) { renderBuildJob( buildJob, locale ); } sink.table_(); sink.body_(); sink.flush(); sink.close();
271272273274275276277278279280281
192193194195196197198199200201202
sink.list_(); sink.tableCell_(); sink.tableRow_(); } sink.table_(); sink.section2_(); sink.section2(); sink.sectionTitle2(); sink.text("List of NamedQueries per entity");
226227228229230231232233234235236
sink.list_(); sink.tableCell_(); sink.tableRow_(); } sink.table_(); sink.section2_(); sink.section2(); sink.sectionTitle2(); sink.text("List of JPQL queries");
253254255256257258259260261262263
sink.text(query.getJPQLQuery()); sink.tableCell_(); sink.tableRow_(); } sink.table_(); sink.section2_(); sink.section2(); sink.sectionTitle2(); sink.text("List of SQL Queries");
288289290291292293294295296297298
sink.tableCell_(); sink.tableRow_(); } } sink.table_(); sink.section2_(); sink.section2(); sink.sectionTitle2(); sink.text("List of Faulty Queries");
317318319320321322323324325326327
sink.tableCell_(); sink.tableRow_(); } } sink.table_(); sink.section2_(); sink.section1_(); sink.body_();
197198199200201202203204205206207