diff --git a/Core/src/org/sleuthkit/autopsy/centralrepository/datamodel/CorrelationAttributeUtil.java b/Core/src/org/sleuthkit/autopsy/centralrepository/datamodel/CorrelationAttributeUtil.java index c8dfa81f7c..e08bed19c0 100755 --- a/Core/src/org/sleuthkit/autopsy/centralrepository/datamodel/CorrelationAttributeUtil.java +++ b/Core/src/org/sleuthkit/autopsy/centralrepository/datamodel/CorrelationAttributeUtil.java @@ -133,7 +133,7 @@ public class CorrelationAttributeUtil { * whether receiving a null return value is an error or not, plus null * checking is easy to forget, while catching exceptions is enforced. * - * @param Content A Content object. + * @param content A Content object. * * @return A list, possibly empty, of correlation attribute instances for * the content. @@ -298,6 +298,7 @@ public class CorrelationAttributeUtil { * * @param corrAttrInstances Correlation attributes will be added to this. * @param artifact An artifact with a phone number attribute. + * @param attributes List of attributes. * * @throws TskCoreException If there is an error * querying the case @@ -393,11 +394,12 @@ public class CorrelationAttributeUtil { * * @param corrAttrInstances A list of correlation attribute instances. * @param artifact An artifact. - * @param artAttrType The type of the atrribute of the artifact that - * is to be made into a correlatin attribute + * @param artAttrType The type of the attribute of the artifact that + * is to be made into a correlation attribute * instance. * @param typeId The type ID for the desired correlation * attribute instance. + * @param attributes List of attributes. * @param sourceContent The source content object. * @param dataSource The data source content object. * @@ -427,11 +429,12 @@ public class CorrelationAttributeUtil { * * @param corrAttrInstances A list of correlation attribute instances. * @param artifact An artifact. - * @param artAttrType The type of the atrribute of the artifact that - * is to be made into a correlatin attribute + * @param artAttrType The type of the attribute of the artifact that + * is to be made into a correlation attribute * instance. * @param typeId The type ID for the desired correlation * attribute instance. + * @param attributes List of attributes. * * @throws CentralRepoException If there is an error querying the central * repository. @@ -555,7 +558,7 @@ public class CorrelationAttributeUtil { * account. Checks address if it is null, or one of the ones always present * on a windows system and thus not unique. * - * @param osAccoun The OS account. + * @param osAccount The OS account. * @param dataSource The data source content object. * * @return The correlation attribute instance or null, if an error occurred. diff --git a/Core/src/org/sleuthkit/autopsy/centralrepository/eventlisteners/IngestEventsListener.java b/Core/src/org/sleuthkit/autopsy/centralrepository/eventlisteners/IngestEventsListener.java index cd9e03c9aa..270f436a71 100644 --- a/Core/src/org/sleuthkit/autopsy/centralrepository/eventlisteners/IngestEventsListener.java +++ b/Core/src/org/sleuthkit/autopsy/centralrepository/eventlisteners/IngestEventsListener.java @@ -229,6 +229,8 @@ public class IngestEventsListener { * @param originalArtifact Original artifact that we want to flag * @param caseDisplayNames List of case names artifact was previously seen * in + * @param aType The correlation type. + * @param value The correlation value. */ @NbBundle.Messages({"IngestEventsListener.prevTaggedSet.text=Previously Tagged As Notable (Central Repository)", "IngestEventsListener.prevCaseComment.text=Previous Case: "}) @@ -259,6 +261,8 @@ public class IngestEventsListener { * @param originalArtifact the artifact to create the "previously seen" item for * @param caseDisplayNames the case names the artifact was previously seen * in + * @param aType The correlation type. + * @param value The correlation value. */ @NbBundle.Messages({"IngestEventsListener.prevExists.text=Previously Seen Devices (Central Repository)", "# {0} - typeName", @@ -303,6 +307,8 @@ public class IngestEventsListener { * * @param originalArtifact the artifact to create the "previously unseen" item * for + * @param aType The correlation type. + * @param value The correlation value. */ static private void makeAndPostPreviouslyUnseenArtifact(BlackboardArtifact originalArtifact, CorrelationAttributeInstance.Type aType, String value) { Collection attributesForNewArtifact = Arrays.asList( @@ -319,6 +325,7 @@ public class IngestEventsListener { /** * Make an artifact to flag the passed in artifact. * + * @param newArtifactType Type of artifact to create. * @param originalArtifact Artifact in current case we want to flag * @param attributesForNewArtifact Attributes to assign to the new artifact * @param configuration The configuration to be specified for the new artifact hit diff --git a/Core/src/org/sleuthkit/autopsy/datamodel/BlackboardArtifactNode.java b/Core/src/org/sleuthkit/autopsy/datamodel/BlackboardArtifactNode.java index 64cece2956..cc32ae029f 100644 --- a/Core/src/org/sleuthkit/autopsy/datamodel/BlackboardArtifactNode.java +++ b/Core/src/org/sleuthkit/autopsy/datamodel/BlackboardArtifactNode.java @@ -834,8 +834,8 @@ public class BlackboardArtifactNode extends AbstractContentNode The return type. * @param visitor The visitor, where the type parameter of the visitor is * the type of the object that will be returned as the result * of the visit operation. diff --git a/Core/src/org/sleuthkit/autopsy/datasourcesummary/datamodel/TypesSummary.java b/Core/src/org/sleuthkit/autopsy/datasourcesummary/datamodel/TypesSummary.java index b13e852b95..7eb06e3f68 100755 --- a/Core/src/org/sleuthkit/autopsy/datasourcesummary/datamodel/TypesSummary.java +++ b/Core/src/org/sleuthkit/autopsy/datasourcesummary/datamodel/TypesSummary.java @@ -170,7 +170,7 @@ public class TypesSummary { * Constructor that accepts FileTypeCategory. * * @param label The label for this slice. - * @param mimeTypes The mime types associated with this slice. + * @param fileCategory The category associated with this slice. * @param color The color associated with this slice. */ public FileTypeCategoryData(String label, FileTypeUtils.FileTypeCategory fileCategory, Color color) { diff --git a/Core/src/org/sleuthkit/autopsy/discovery/search/DomainSearch.java b/Core/src/org/sleuthkit/autopsy/discovery/search/DomainSearch.java index 0557808758..bfa1f34a0b 100644 --- a/Core/src/org/sleuthkit/autopsy/discovery/search/DomainSearch.java +++ b/Core/src/org/sleuthkit/autopsy/discovery/search/DomainSearch.java @@ -126,6 +126,7 @@ public class DomainSearch { * @param caseDb The case database. * @param centralRepoDb The central repository database. Can be null * if not needed. + * @param context The search context. * * @return A LinkedHashMap grouped and sorted according to the parameters. * diff --git a/docs/doxygen-user/main.dox b/docs/doxygen-user/main.dox index c01e5ea76d..a31367ff6c 100644 --- a/docs/doxygen-user/main.dox +++ b/docs/doxygen-user/main.dox @@ -71,7 +71,6 @@ The following topics are available here: - \subpage ui_quick_search - \subpage file_search_page - \subpage ad_hoc_keyword_search_page - - \subpage stix_page - \subpage common_properties_page - \subpage search_all_cases_page