19 package org.sleuthkit.autopsy.datamodel;
21 import org.apache.commons.lang3.tuple.Pair;
30 private Pair<DataResultViewerTable.
Score, String> scoreAndDescription = null;
31 private DataResultViewerTable.HasCommentStatus comment = null;
32 private Pair<Long, String> countAndDescription = null;
34 Pair<DataResultViewerTable.Score, String> getScoreAndDescription() {
35 return scoreAndDescription;
38 DataResultViewerTable.HasCommentStatus getComment() {
42 Pair<Long, String> getCountAndDescription() {
43 return countAndDescription;
46 void setScoreAndDescription(Pair<DataResultViewerTable.Score, String> scoreAndDescription) {
47 this.scoreAndDescription = scoreAndDescription;
49 void setComment(DataResultViewerTable.HasCommentStatus comment) {
50 this.comment = comment;
52 void setCountAndDescription(Pair<Long, String> countAndDescription) {
53 this.countAndDescription = countAndDescription;