Skip to content
Snippets Groups Projects
Commit 3158af16 authored by Mark McKinnon's avatar Mark McKinnon
Browse files

Update TimelineEventType.java

Add description to make timeline event type unique for document metdata  event types
parent 9b0dbd08
Branches
Tags
No related merge requests found
......@@ -531,28 +531,29 @@ public SortedSet< TimelineEventType> getChildren() {
getBundle().getString("MiscTypes.metadataLastPrinted.name"),// NON-NLS
MISC_TYPES,
new BlackboardArtifact.Type(TSK_METADATA),
new Type(TSK_LAST_PRINTED_DATETIME),
new EmptyExtractor(),
new EmptyExtractor(),
new EmptyExtractor());
new BlackboardAttribute.Type(TSK_LAST_PRINTED_DATETIME),
artf -> {return getBundle().getString("MiscTypes.metadataLastPrinted.name");},
new EmptyExtractor(),
new EmptyExtractor());
TimelineEventType METADATA_LAST_SAVED = new TimelineEventArtifactTypeImpl(34,
getBundle().getString("MiscTypes.metadataLastSaved.name"),// NON-NLS
MISC_TYPES,
new BlackboardArtifact.Type(TSK_METADATA),
new Type(TSK_DATETIME_MODIFIED),
new EmptyExtractor(),
new EmptyExtractor(),
new EmptyExtractor());
new BlackboardAttribute.Type(TSK_DATETIME_MODIFIED),
artf -> {return getBundle().getString("MiscTypes.metadataLastSaved.name");},
new EmptyExtractor(),
new EmptyExtractor());
TimelineEventType METADATA_CREATED = new TimelineEventArtifactTypeImpl(35,
getBundle().getString("MiscTypes.metadataCreated.name"),// NON-NLS
MISC_TYPES,
new BlackboardArtifact.Type(TSK_METADATA),
new Type(TSK_DATETIME_CREATED),
new EmptyExtractor(),
new EmptyExtractor(),
new EmptyExtractor());
new BlackboardAttribute.Type(TSK_DATETIME_CREATED),
artf -> {return getBundle().getString("MiscTypes.metadataCreated.name");},
new EmptyExtractor(),
new EmptyExtractor());
static SortedSet<? extends TimelineEventType> getCategoryTypes() {
return ROOT_EVENT_TYPE.getChildren();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment