19 package org.sleuthkit.autopsy.datamodel;
 
   21 import org.apache.commons.lang3.tuple.Pair;
 
   31     private Pair<Score, String> scoreAndDescription = null;  
 
   32     private DataResultViewerTable.HasCommentStatus comment = null;
 
   33     private Pair<Long, String> countAndDescription = null;
 
   35     Pair<Score, String> getScoreAndDescription() {
 
   36         return scoreAndDescription;
 
   39     DataResultViewerTable.HasCommentStatus getComment() {
 
   43     Pair<Long, String> getCountAndDescription() {
 
   44         return countAndDescription;
 
   47     void setScoreAndDescription(Pair<Score, String> scoreAndDescription) {
 
   48         this.scoreAndDescription = scoreAndDescription;
 
   50     void setComment(DataResultViewerTable.HasCommentStatus comment) {
 
   51         this.comment = comment;
 
   53     void setCountAndDescription(Pair<Long, String> countAndDescription) {
 
   54         this.countAndDescription = countAndDescription;