Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
Autopsy
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
IRT
Autopsy
Commits
3d78507b
Commit
3d78507b
authored
5 years ago
by
Eugene Livis
Browse files
Options
Downloads
Patches
Plain Diff
Updated javadocs
parent
66ca34fe
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Core/src/org/sleuthkit/autopsy/report/infrastructure/ReportGenerator.java
+8
-1
8 additions, 1 deletion
...uthkit/autopsy/report/infrastructure/ReportGenerator.java
with
8 additions
and
1 deletion
Core/src/org/sleuthkit/autopsy/report/infrastructure/ReportGenerator.java
+
8
−
1
View file @
3d78507b
...
@@ -121,6 +121,10 @@ public ReportGenerator(String configName, ReportProgressIndicator progressIndica
...
@@ -121,6 +121,10 @@ public ReportGenerator(String configName, ReportProgressIndicator progressIndica
this
.
configName
=
configName
;
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
()
{
public
void
generateReports
()
{
// load all report modules
// load all report modules
Map
<
String
,
ReportModule
>
modules
=
new
HashMap
<>();
Map
<
String
,
ReportModule
>
modules
=
new
HashMap
<>();
...
@@ -144,7 +148,10 @@ public void generateReports() {
...
@@ -144,7 +148,10 @@ public void generateReports() {
/**
/**
* Generates the reports specified by the reporting configuration passed in
* 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
)
{
public
void
generateReports
(
Map
<
String
,
ReportModule
>
modules
)
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment