19 package org.sleuthkit.autopsy.datamodel;
21 import org.openide.nodes.AbstractNode;
22 import org.openide.nodes.Children;
23 import org.openide.util.Lookup;
41 super(children, lookup);
64 static AbstractFile findLinked(BlackboardArtifact artifact)
throws TskCoreException {
66 BlackboardAttribute pathIDAttribute = artifact.getAttribute(
new BlackboardAttribute.Type(BlackboardAttribute.ATTRIBUTE_TYPE.TSK_PATH_ID));
68 if (pathIDAttribute != null) {
69 long contentID = pathIDAttribute.getValueLong();
70 if (contentID != -1) {
71 return artifact.getSleuthkitCase().getAbstractFileById(contentID);
abstract boolean isLeafTypeNode()
DisplayableItemNode(Children children, Lookup lookup)
DisplayableItemNode(Children children)
abstract< T > T accept(DisplayableItemNodeVisitor< T > v)