Doxygen fixes

This commit is contained in:
apriestman 2021-04-01 11:31:19 -04:00
parent 9248c9dd7e
commit dfcc43d275
6 changed files with 8 additions and 8 deletions

View File

@ -511,8 +511,6 @@ public final class OtherOccurrencesPanel extends javax.swing.JPanel {
* from the current case with matching MD5 hashes. * from the current case with matching MD5 hashes.
* *
* @param corAttr CorrelationAttribute to query for * @param corAttr CorrelationAttribute to query for
* @param dataSourceName Data source to filter results
* @param deviceId Device Id to filter results
* *
* @return A collection of correlated artifact instances * @return A collection of correlated artifact instances
*/ */
@ -618,6 +616,7 @@ public final class OtherOccurrencesPanel extends javax.swing.JPanel {
* *
* @param corAttr The CorrelationAttribute containing the MD5 to search for * @param corAttr The CorrelationAttribute containing the MD5 to search for
* @param openCase The current case * @param openCase The current case
* @param file The current file.
* *
* @return List of matching AbstractFile objects * @return List of matching AbstractFile objects
* *

View File

@ -51,10 +51,10 @@ final class SectionData implements Iterable<SectionData.RowData<String, String>>
} }
/** /**
* Add a new property name\property value pair. * Add a new property name/property value pair.
* *
* @param key The property display name. * @param properytName The property display name.
* @param value The property value. * @param propertyValue The property value.
*/ */
void addData(String properytName, String propertyValue) { void addData(String properytName, String propertyValue) {
data.add(new RowData<>(properytName, propertyValue)); data.add(new RowData<>(properytName, propertyValue));

View File

@ -66,7 +66,7 @@ public class BarChartExport implements ExcelItemExportable, ExcelSheetExport {
* @param categories The categories with their data. * @param categories The categories with their data.
* @param keyColumnHeader The header column name for the table descriptions * @param keyColumnHeader The header column name for the table descriptions
* (i.e. types: file types / artifact types). * (i.e. types: file types / artifact types).
* @param valueFormatString The excel format string to use for values. * @param chartTitle The title for the chart.
* @return An excel table export to be used as the data source for the chart * @return An excel table export to be used as the data source for the chart
* in the excel document. * in the excel document.
*/ */

View File

@ -1116,6 +1116,7 @@ public final class DirectoryTreeTopComponent extends TopComponent implements Dat
* DataSourcesByType looking for the Results Node. * DataSourcesByType looking for the Results Node.
* *
* @param node The node. * @param node The node.
* @param dataSourceId The data source id.
* @return The child nodes that are at the data source level. * @return The child nodes that are at the data source level.
*/ */
private Node getResultsNodeSearch(Node node, long dataSourceId) { private Node getResultsNodeSearch(Node node, long dataSourceId) {

View File

@ -24,7 +24,7 @@ import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target; import java.lang.annotation.Target;
/** /**
* Annotation similar to Junit's @Test for outputing results as a part of an * Annotation similar to Junit's \@Test for outputting results as a part of an
* integration test. * integration test.
*/ */
@Retention(RetentionPolicy.RUNTIME) @Retention(RetentionPolicy.RUNTIME)

View File

@ -54,7 +54,7 @@ public final class PathUtil {
* each is treated as a relative path using the working directory. * each is treated as a relative path using the working directory.
* *
* @param workingDirectory The working directory. * @param workingDirectory The working directory.
* @param relPath The paths. * @param relPaths The paths.
* @return The list of paths with the workingDirectory prepended if a path * @return The list of paths with the workingDirectory prepended if a path
* is a relative path. * is a relative path.
*/ */