public static void main(String[] args) throws ReportDefinitionException, ReportProcessingException, IOException
{
ClassicEngineBoot.getInstance().start();
//final BookstoreDemo demo = new BookstoreDemo();
final VeryLargeReportDemo demo = new VeryLargeReportDemo();
//final GroupsDemo demo = new GroupsDemo();
final MasterReport report = demo.createReport();
// createPageable(report, "/tmp/report-pageable.xml");
// createStreamTable(report, "/tmp/report-stream.xml");
// createFlowTable(report, "/tmp/report-flow.xml");
HtmlReportUtil.createDirectoryHTML(report, "/tmp/report-flow.html");
}