19 package org.sleuthkit.datamodel;
25 class TimelineEventDescription {
27 private final String shortDesc;
28 private final String mediumDesc;
29 private final String fullDesc;
42 TimelineEventDescription(String fullDescription, String medDescription, String shortDescription) {
43 this.shortDesc = shortDescription;
44 this.mediumDesc = medDescription;
45 this.fullDesc = fullDescription;
56 TimelineEventDescription(String fullDescription) {
59 this.fullDesc = fullDescription;
69 String getDescription(TimelineLevelOfDetail levelOfDetail) {
70 switch (levelOfDetail) {
75 return this.mediumDesc;
77 return this.shortDesc;