Skip to content

Commit

Permalink
Updated javadocs
Browse files Browse the repository at this point in the history
  • Loading branch information
eugene7646 committed Jan 14, 2020
1 parent 66ca34f commit 3d78507
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,10 @@ public ReportGenerator(String configName, ReportProgressIndicator progressIndica
this.configName = configName;
}

/**
* Generates the reports specified by the reporting configuration passed
* in via the constructor. Does lookup of all existing report modules.
*/
public void generateReports() {
// load all report modules
Map<String, ReportModule> modules = new HashMap<>();
Expand All @@ -144,7 +148,10 @@ public void generateReports() {

/**
* Generates the reports specified by the reporting configuration passed in
* via the constructor.
* via the constructor.
*
* @param modules Map of report module objects to use. This is useful when we want to
* re-use the module instances or limit which reports are generated.
*/
public void generateReports(Map<String, ReportModule> modules) {

Expand Down

0 comments on commit 3d78507

Please sign in to comment.