public interface Report
The main interface for reports execution
The typical usage is:
  Report report = new ReportBuilder(new HtmlReportOutput(new FileWriter("/temp/test.html")))
           .add(.. report title..)
           .add(.. table...)
           .add(.. paragraph ..)
           .add( .. other report components..)
            ...
            .build(); 
  report.execute(); 
 
 
 
 Any implementation of ReportComponent can be added to the report using the ReportBuilder#add(ReportComponent) method
 
ReportBuilder, 
ReportComponent| Modifier and Type | Method and Description | 
|---|---|
| void | execute()runs the report | 
Copyright © 2006–2015. All rights reserved.