19 package org.sleuthkit.autopsy.datamodel;
21 import org.apache.commons.lang3.tuple.Pair;
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;