Interface | Description |
---|---|
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
|
Class | Description |
---|---|
ReportBuilder |
This is the one and only builder for any report
Typical usage:
Report report = new ReportBuilder(new HtmlReportOutput(new FileWriter("/temp/test.html")))
.add(new ReportTile("My first report"))
.add(...)
.add(other report components here)
.build();
report.execute();
|
Copyright © 2006–2015. All rights reserved.