예제 #1
0
 /**
  * Returns the report definition which will be used to generate the report. In this case, the
  * report will be loaded and parsed from a file contained in this package.
  *
  * @return the loaded and parsed report definition to be used in report generation.
  */
 public MasterReport getReportDefinition() {
   final MasterReport report = new MasterReport();
   report.setQuery(QUERY_NAME);
   report.addPreProcessor(new RelationalAutoGeneratorPreProcessor());
   return report;
 }