Autopsy  3.1
Graphical digital forensics platform for The Sleuth Kit and other tools.
Public Member Functions | Protected Member Functions | Private Attributes | List of all members
org.sleuthkit.autopsy.datamodel.ExtractedContent.TypeFactory Class Reference

Inherits Detachable< BlackboardArtifact.ARTIFACT_TYPE >.

Public Member Functions

 TypeFactory ()
 

Protected Member Functions

void addNotify ()
 
void removeNotify ()
 
boolean createKeys (List< BlackboardArtifact.ARTIFACT_TYPE > list)
 
Node createNodeForKey (BlackboardArtifact.ARTIFACT_TYPE key)
 

Private Attributes

final ArrayList< BlackboardArtifact.ARTIFACT_TYPE > doNotShow
 
final HashMap< BlackboardArtifact.ARTIFACT_TYPE, TypeNodetypeNodeList = new HashMap<>()
 
final PropertyChangeListener pcl
 

Detailed Description

Creates the children for the ExtractedContent area of the results tree. This area has all of the blackboard artifacts that are not displayed in a more specific form elsewhere in the tree.

Definition at line 128 of file ExtractedContent.java.

Constructor & Destructor Documentation

org.sleuthkit.autopsy.datamodel.ExtractedContent.TypeFactory.TypeFactory ( )

Member Function Documentation

void org.sleuthkit.autopsy.datamodel.ExtractedContent.TypeFactory.addNotify ( )
protected
boolean org.sleuthkit.autopsy.datamodel.ExtractedContent.TypeFactory.createKeys ( List< BlackboardArtifact.ARTIFACT_TYPE >  list)
protected
Node org.sleuthkit.autopsy.datamodel.ExtractedContent.TypeFactory.createNodeForKey ( BlackboardArtifact.ARTIFACT_TYPE  key)
protected

Definition at line 219 of file ExtractedContent.java.

void org.sleuthkit.autopsy.datamodel.ExtractedContent.TypeFactory.removeNotify ( )
protected

Member Data Documentation

final ArrayList<BlackboardArtifact.ARTIFACT_TYPE> org.sleuthkit.autopsy.datamodel.ExtractedContent.TypeFactory.doNotShow
private
final PropertyChangeListener org.sleuthkit.autopsy.datamodel.ExtractedContent.TypeFactory.pcl
private
Initial value:
= new PropertyChangeListener() {
@Override
public void propertyChange(PropertyChangeEvent evt) {
String eventType = evt.getPropertyName();
if (eventType.equals(IngestManager.IngestModuleEvent.DATA_ADDED.toString())) {
final ModuleDataEvent event = (ModuleDataEvent) evt.getOldValue();
if (doNotShow.contains(event.getArtifactType()) == false) {
refresh(true);
}
} else if (eventType.equals(IngestManager.IngestJobEvent.COMPLETED.toString())
|| eventType.equals(IngestManager.IngestJobEvent.CANCELLED.toString())) {
refresh(true);
}
else if (eventType.equals(Case.Events.CURRENT_CASE.toString())) {
if (evt.getNewValue() == null) {
skCase = null;
}
}
}
}

Definition at line 146 of file ExtractedContent.java.

final HashMap<BlackboardArtifact.ARTIFACT_TYPE, TypeNode> org.sleuthkit.autopsy.datamodel.ExtractedContent.TypeFactory.typeNodeList = new HashMap<>()
private

Definition at line 131 of file ExtractedContent.java.


The documentation for this class was generated from the following file:

Copyright © 2012-2015 Basis Technology. Generated on: Mon Oct 19 2015
This work is licensed under a Creative Commons Attribution-Share Alike 3.0 United States License.