Go to the documentation of this file.
19package org.sleuthkit.autopsy.datamodel;
21import org.apache.commons.lang3.tuple.Pair;
22import org.sleuthkit.autopsy.corecomponents.DataResultViewerTable;
23import org.sleuthkit.datamodel.Score;
31 private final Pair<Score, String> scoreAndDescription;
32 private final DataResultViewerTable.HasCommentStatus comment;
33 private final Pair<Long, String> countAndDescription;
35 SCOData (Pair<Score, String> scoreAndDescription, DataResultViewerTable.HasCommentStatus comment, Pair<Long, String> countAndDescription){
36 this.scoreAndDescription = scoreAndDescription;
37 this.comment = comment;
38 this.countAndDescription = countAndDescription;
41 Pair<Score, String> getScoreAndDescription() {
42 return scoreAndDescription;
45 DataResultViewerTable.HasCommentStatus getComment() {
49 Pair<Long, String> getCountAndDescription() {
50 return countAndDescription;
Copyright © 2012-2024 Sleuth Kit Labs. Generated on:
This work is licensed under a
Creative Commons Attribution-Share Alike 3.0 United States License.