19 package org.sleuthkit.autopsy.datamodel;
23 import org.openide.util.NbBundle;
36 AUT_0DAY_FILTER(0,
"AUT_0DAY_FILTER",
37 NbBundle.getMessage(
RecentFiles.class,
"RecentFiles.aut0DayFilter.displayName.text"), 0),
38 AUT_1DAY_FILTER(0,
"AUT_1DAY_FILTER",
39 NbBundle.getMessage(
RecentFiles.class,
"RecentFiles.aut1dayFilter.displayName.text"), 1),
40 AUT_2DAY_FILTER(0,
"AUT_2DAY_FILTER",
41 NbBundle.getMessage(
RecentFiles.class,
"RecentFiles.aut2dayFilter.displayName.text"), 2),
42 AUT_3DAY_FILTER(0,
"AUT_3DAY_FILTER",
43 NbBundle.getMessage(
RecentFiles.class,
"RecentFiles.aut3dayFilter.displayName.text"), 3),
44 AUT_4DAY_FILTER(0,
"AUT_4DAY_FILTER",
45 NbBundle.getMessage(
RecentFiles.class,
"RecentFiles.aut4dayFilter.displayName.text"), 4),
46 AUT_5DAY_FILTER(0,
"AUT_5DAY_FILTER",
47 NbBundle.getMessage(
RecentFiles.class,
"RecentFiles.aut5dayFilter.displayName.text"), 5),
48 AUT_6DAY_FILTER(0,
"AUT_6DAY_FILTER",
49 NbBundle.getMessage(
RecentFiles.class,
"RecentFiles.aut6dayFilter.displayName.text"), 6);
59 this.displayName = displayName;
60 this.durationDays = durationDays;
72 return this.displayName;
76 return this.durationDays;
81 return visitor.
visit(
this);
92 return visitor.
visit(
this);
SleuthkitCase getSleuthkitCase()
RecentFiles(SleuthkitCase skCase)
RecentFilesFilter(int id, String name, String displayName, int durationDays)
public< T > T accept(AutopsyItemVisitor< T > visitor)