diff --git a/Core/src/org/sleuthkit/autopsy/report/infrastructure/ReportGenerator.java b/Core/src/org/sleuthkit/autopsy/report/infrastructure/ReportGenerator.java index 7b7c68a571..68d69ed88f 100644 --- a/Core/src/org/sleuthkit/autopsy/report/infrastructure/ReportGenerator.java +++ b/Core/src/org/sleuthkit/autopsy/report/infrastructure/ReportGenerator.java @@ -282,6 +282,7 @@ public class ReportGenerator { /** * Run the TableReportModules using a SwingWorker. * + * @param tableReport * @param tableReportSettings settings for the table report */ private void generateTableReport(TableReportModule tableReport, TableReportSettings tableReportSettings) throws IOException { @@ -301,6 +302,7 @@ public class ReportGenerator { /** * Run the FileReportModules using a SwingWorker. * + * @param fileReportModule * @param fileReportSettings settings for the file report */ private void generateFileListReport(FileReportModule fileReportModule, FileReportSettings fileReportSettings) throws IOException { diff --git a/Core/src/org/sleuthkit/autopsy/report/modules/html/HTMLReport.java b/Core/src/org/sleuthkit/autopsy/report/modules/html/HTMLReport.java index e0eba30501..46c1268f2c 100644 --- a/Core/src/org/sleuthkit/autopsy/report/modules/html/HTMLReport.java +++ b/Core/src/org/sleuthkit/autopsy/report/modules/html/HTMLReport.java @@ -461,7 +461,7 @@ public class HTMLReport implements TableReportModule { * temporary workaround to avoid modifying the TableReportModule interface. * * @param name Name of the data type - * @param comment Comment on the data type, may be the empty string + * @param description Comment on the data type, may be the empty string */ @Override public void startDataType(String name, String description) { @@ -644,7 +644,6 @@ public class HTMLReport implements TableReportModule { * temporary workaround to avoid modifying the TableReportModule interface. * * @param columnHeaders column headers - * @param sourceArtifact source blackboard artifact for the table data */ public void startContentTagsTable(List columnHeaders) { StringBuilder htmlOutput = new StringBuilder(); @@ -718,12 +717,10 @@ public class HTMLReport implements TableReportModule { /** * Saves a local copy of a tagged file and adds a row with a hyper link to - * the file. The content of the hyperlink is provided in linkHTMLContent. + * the file. * * @param row Values for each data cell in the row - * @param file The file to link to in the report. - * @param tagName the name of the tag that the content was flagged by - * @param linkHTMLContent the html that will be the body of the link + * @param contentTag The tag */ public void addRowWithTaggedContentHyperlink(List row, ContentTag contentTag) { Content content = contentTag.getContent(); diff --git a/Core/src/org/sleuthkit/autopsy/report/modules/stix/STIXReportModule.java b/Core/src/org/sleuthkit/autopsy/report/modules/stix/STIXReportModule.java index 06ebacd550..5f384e4467 100644 --- a/Core/src/org/sleuthkit/autopsy/report/modules/stix/STIXReportModule.java +++ b/Core/src/org/sleuthkit/autopsy/report/modules/stix/STIXReportModule.java @@ -267,6 +267,7 @@ public class STIXReportModule implements GeneralReportModule { * * @param stix STIXPackage * @param output + * @param progressPanel */ private void processIndicators(STIXPackage stix, BufferedWriter output, ReportProgressPanel progressPanel) throws TskCoreException { if (stix.getIndicators() != null) { @@ -304,6 +305,7 @@ public class STIXReportModule implements GeneralReportModule { * * @param ind * @param result + * @param progressPanel * * @throws TskCoreException */