Autopsy  4.4.1
Graphical digital forensics platform for The Sleuth Kit and other tools.
Classes | Public Member Functions | Private Member Functions | Private Attributes | Static Private Attributes | List of all members
org.sleuthkit.autopsy.corecomponents.DataContentViewerArtifact Class Reference

Inherits JPanel, and org.sleuthkit.autopsy.corecomponentinterfaces.DataContentViewer.

Classes

class  MultiLineTableCellRenderer
 
class  ResultsTableArtifact
 
class  SelectedArtifactChangedTask
 
class  SelectedNodeChangedTask
 
class  ViewUpdate
 

Public Member Functions

 DataContentViewerArtifact ()
 
DataContentViewer createInstance ()
 
Component getComponent ()
 
String getTitle ()
 
String getToolTip ()
 
int isPreferred (Node node)
 
boolean isSupported (Node node)
 
void resetComponent ()
 
void setNode (Node selectedNode)
 

Private Member Functions

void customizeComponents ()
 
List< ResultsTableArtifactgetArtifactContents ()
 
void initComponents ()
 
void initResultsTable ()
 
void nextPageButtonActionPerformed (java.awt.event.ActionEvent evt)
 
void prevPageButtonActionPerformed (java.awt.event.ActionEvent evt)
 
void resetComponents ()
 
void setArtifactContents (List< ResultsTableArtifact > artifactList)
 
synchronized void startNewTask (SwingWorker< ViewUpdate, Void > task)
 
void updateColumnSizes ()
 
void updateRowHeights ()
 
void updateView (ViewUpdate viewUpdate)
 

Private Attributes

javax.swing.JLabel artifactLabel
 
List< ResultsTableArtifactartifactTableContents
 
javax.swing.JMenuItem copyMenuItem
 
Node currentNode
 
int currentPage = 1
 
javax.swing.JLabel currentPageLabel
 
javax.swing.JPanel jPanel1
 
final Object lock = new Object()
 
javax.swing.JButton nextPageButton
 
javax.swing.JLabel ofLabel
 
javax.swing.JLabel pageLabel
 
javax.swing.JLabel pageLabel2
 
javax.swing.JButton prevPageButton
 
ETable resultsTable
 
javax.swing.JScrollPane resultsTableScrollPane
 
javax.swing.JPopupMenu rightClickMenu
 
javax.swing.JMenuItem selectAllMenuItem
 
javax.swing.JLabel totalPageLabel
 

Static Private Attributes

static final int CELL_BOTTOM_MARGIN = 5
 
static final String[] COLUMN_HEADERS
 
static final int[] COLUMN_WIDTHS = {100, 800, 100}
 
static final String ERROR_TEXT = NbBundle.getMessage(DataContentViewerArtifact.class, "DataContentViewerArtifact.errorText")
 
static final Logger logger = Logger.getLogger(DataContentViewerArtifact.class.getName())
 
static final String WAIT_TEXT = NbBundle.getMessage(DataContentViewerArtifact.class, "DataContentViewerArtifact.waitText")
 

Detailed Description

Instances of this class display the BlackboardArtifacts associated with the Content represented by a Node. Each BlackboardArtifact is rendered displayed in a JTable representation of its BlackboardAttributes.

Definition at line 66 of file DataContentViewerArtifact.java.

Constructor & Destructor Documentation

org.sleuthkit.autopsy.corecomponents.DataContentViewerArtifact.DataContentViewerArtifact ( )

Definition at line 90 of file DataContentViewerArtifact.java.

Member Function Documentation

DataContentViewer org.sleuthkit.autopsy.corecomponents.DataContentViewerArtifact.createInstance ( )

Create and return a new instance of your viewer. The reason that this is needed is because the specific viewer modules will be found via NetBeans Lookup and the type will only be DataContentViewer. This method is used to get an instance of your specific type.

Returns
A new instance of the viewer

Implements org.sleuthkit.autopsy.corecomponentinterfaces.DataContentViewer.

Definition at line 440 of file DataContentViewerArtifact.java.

void org.sleuthkit.autopsy.corecomponents.DataContentViewerArtifact.customizeComponents ( )
private

Definition at line 364 of file DataContentViewerArtifact.java.

List<ResultsTableArtifact> org.sleuthkit.autopsy.corecomponents.DataContentViewerArtifact.getArtifactContents ( )
private

Retrieve the cache of artifact represented as ResultsTableArtifacts.

Returns
A list of ResultsTableArtifact representations of artifacts.

Definition at line 673 of file DataContentViewerArtifact.java.

Component org.sleuthkit.autopsy.corecomponents.DataContentViewerArtifact.getComponent ( )

Return the Swing Component to display. Implementations of this method that extend JPanel and do a 'return this;'. Otherwise return an internal instance of the JPanel.

Implements org.sleuthkit.autopsy.corecomponentinterfaces.DataContentViewer.

Definition at line 445 of file DataContentViewerArtifact.java.

String org.sleuthkit.autopsy.corecomponents.DataContentViewerArtifact.getTitle ( )

Returns the title of this viewer to display in the tab.

Implements org.sleuthkit.autopsy.corecomponentinterfaces.DataContentViewer.

Definition at line 430 of file DataContentViewerArtifact.java.

String org.sleuthkit.autopsy.corecomponents.DataContentViewerArtifact.getToolTip ( )

Returns a short description of this viewer to use as a tool tip for its tab.

Implements org.sleuthkit.autopsy.corecomponentinterfaces.DataContentViewer.

Definition at line 435 of file DataContentViewerArtifact.java.

void org.sleuthkit.autopsy.corecomponents.DataContentViewerArtifact.initComponents ( )
private

This method is called from within the constructor to initialize the form. WARNING: Do NOT modify this code. The content of this method is always regenerated by the Form Editor.

Definition at line 197 of file DataContentViewerArtifact.java.

void org.sleuthkit.autopsy.corecomponents.DataContentViewerArtifact.initResultsTable ( )
private

Definition at line 99 of file DataContentViewerArtifact.java.

int org.sleuthkit.autopsy.corecomponents.DataContentViewerArtifact.isPreferred ( Node  node)

Checks whether the given viewer is preferred for the Node. This is a bit subjective, but the idea is that Autopsy wants to display the most relevant tab. The more generic the viewer, the lower the return value should be. This will only be called on viewers that support the given node.

Parameters
nodeNode to check for preference
Returns
an int (0-10) higher return means the viewer has higher priority 0 means not supported 1 to 2 means the module will display all file types (such as the hex viewer) 3-10 are prioritized by Content viewer developer. Modules that operate on very few file types should be towards 10.

Implements org.sleuthkit.autopsy.corecomponentinterfaces.DataContentViewer.

Definition at line 473 of file DataContentViewerArtifact.java.

boolean org.sleuthkit.autopsy.corecomponents.DataContentViewerArtifact.isSupported ( Node  node)

Checks whether the given node is supported by the viewer. This will be used to enable or disable the tab for the viewer.

Parameters
nodeNode to check for support
Returns
True if the node can be displayed / processed, else false

Implements org.sleuthkit.autopsy.corecomponentinterfaces.DataContentViewer.

Definition at line 455 of file DataContentViewerArtifact.java.

void org.sleuthkit.autopsy.corecomponents.DataContentViewerArtifact.nextPageButtonActionPerformed ( java.awt.event.ActionEvent  evt)
private

Definition at line 333 of file DataContentViewerArtifact.java.

void org.sleuthkit.autopsy.corecomponents.DataContentViewerArtifact.prevPageButtonActionPerformed ( java.awt.event.ActionEvent  evt)
private

Definition at line 340 of file DataContentViewerArtifact.java.

void org.sleuthkit.autopsy.corecomponents.DataContentViewerArtifact.resetComponent ( )

Resets the contents of the viewer / component.

Implements org.sleuthkit.autopsy.corecomponentinterfaces.DataContentViewer.

Definition at line 450 of file DataContentViewerArtifact.java.

void org.sleuthkit.autopsy.corecomponents.DataContentViewerArtifact.resetComponents ( )
private

Resets the components to an empty view state.

Definition at line 396 of file DataContentViewerArtifact.java.

void org.sleuthkit.autopsy.corecomponents.DataContentViewerArtifact.setArtifactContents ( List< ResultsTableArtifact artifactList)
private

Populate the cache of artifact represented as ResultsTableArtifacts.

Parameters
artifactListA list of ResultsTableArtifact representations of artifacts.

Definition at line 662 of file DataContentViewerArtifact.java.

void org.sleuthkit.autopsy.corecomponents.DataContentViewerArtifact.setNode ( Node  selectedNode)

Autopsy will call this when this panel is focused with the file that should be analyzed. When called with null, must clear all references to previous nodes.

Implements org.sleuthkit.autopsy.corecomponentinterfaces.DataContentViewer.

Definition at line 408 of file DataContentViewerArtifact.java.

synchronized void org.sleuthkit.autopsy.corecomponents.DataContentViewerArtifact.startNewTask ( SwingWorker< ViewUpdate, Void >  task)
private

Start a new task on its own background thread, canceling the previous task.

Parameters
taskA new SwingWorker object to execute as a background thread.

Definition at line 636 of file DataContentViewerArtifact.java.

void org.sleuthkit.autopsy.corecomponents.DataContentViewerArtifact.updateColumnSizes ( )
private

Update the column widths so that the Value column has most of the space.

Definition at line 176 of file DataContentViewerArtifact.java.

void org.sleuthkit.autopsy.corecomponents.DataContentViewerArtifact.updateRowHeights ( )
private

Sets the row heights to the heights of the content in their Value column.

Definition at line 143 of file DataContentViewerArtifact.java.

void org.sleuthkit.autopsy.corecomponents.DataContentViewerArtifact.updateView ( ViewUpdate  viewUpdate)
private

Called from queued SwingWorker done() methods on the EDT thread, so doesn't need to be synchronized.

Parameters
viewUpdateA simple container for display update information from a background thread.

Definition at line 612 of file DataContentViewerArtifact.java.

References org.sleuthkit.autopsy.corecomponents.DataContentViewerArtifact.ResultsTableArtifact.getRows().

Member Data Documentation

javax.swing.JLabel org.sleuthkit.autopsy.corecomponents.DataContentViewerArtifact.artifactLabel
private

Definition at line 348 of file DataContentViewerArtifact.java.

List<ResultsTableArtifact> org.sleuthkit.autopsy.corecomponents.DataContentViewerArtifact.artifactTableContents
private

Definition at line 81 of file DataContentViewerArtifact.java.

final int org.sleuthkit.autopsy.corecomponents.DataContentViewerArtifact.CELL_BOTTOM_MARGIN = 5
staticprivate

Definition at line 88 of file DataContentViewerArtifact.java.

final String [] org.sleuthkit.autopsy.corecomponents.DataContentViewerArtifact.COLUMN_HEADERS
staticprivate
Initial value:
= {
Bundle.DataContentViewerArtifact_attrsTableHeader_type(),
Bundle.DataContentViewerArtifact_attrsTableHeader_value(),
Bundle.DataContentViewerArtifact_attrsTableHeader_sources()}

Definition at line 83 of file DataContentViewerArtifact.java.

final int [] org.sleuthkit.autopsy.corecomponents.DataContentViewerArtifact.COLUMN_WIDTHS = {100, 800, 100}
staticprivate

Definition at line 87 of file DataContentViewerArtifact.java.

javax.swing.JMenuItem org.sleuthkit.autopsy.corecomponents.DataContentViewerArtifact.copyMenuItem
private

Definition at line 349 of file DataContentViewerArtifact.java.

Node org.sleuthkit.autopsy.corecomponents.DataContentViewerArtifact.currentNode
private

Definition at line 78 of file DataContentViewerArtifact.java.

int org.sleuthkit.autopsy.corecomponents.DataContentViewerArtifact.currentPage = 1
private

Definition at line 79 of file DataContentViewerArtifact.java.

javax.swing.JLabel org.sleuthkit.autopsy.corecomponents.DataContentViewerArtifact.currentPageLabel
private

Definition at line 350 of file DataContentViewerArtifact.java.

final String org.sleuthkit.autopsy.corecomponents.DataContentViewerArtifact.ERROR_TEXT = NbBundle.getMessage(DataContentViewerArtifact.class, "DataContentViewerArtifact.errorText")
staticprivate

Definition at line 77 of file DataContentViewerArtifact.java.

javax.swing.JPanel org.sleuthkit.autopsy.corecomponents.DataContentViewerArtifact.jPanel1
private

Definition at line 351 of file DataContentViewerArtifact.java.

final Object org.sleuthkit.autopsy.corecomponents.DataContentViewerArtifact.lock = new Object()
private

Definition at line 80 of file DataContentViewerArtifact.java.

final Logger org.sleuthkit.autopsy.corecomponents.DataContentViewerArtifact.logger = Logger.getLogger(DataContentViewerArtifact.class.getName())
staticprivate

Definition at line 75 of file DataContentViewerArtifact.java.

javax.swing.JButton org.sleuthkit.autopsy.corecomponents.DataContentViewerArtifact.nextPageButton
private

Definition at line 352 of file DataContentViewerArtifact.java.

javax.swing.JLabel org.sleuthkit.autopsy.corecomponents.DataContentViewerArtifact.ofLabel
private

Definition at line 353 of file DataContentViewerArtifact.java.

javax.swing.JLabel org.sleuthkit.autopsy.corecomponents.DataContentViewerArtifact.pageLabel
private

Definition at line 354 of file DataContentViewerArtifact.java.

javax.swing.JLabel org.sleuthkit.autopsy.corecomponents.DataContentViewerArtifact.pageLabel2
private

Definition at line 355 of file DataContentViewerArtifact.java.

javax.swing.JButton org.sleuthkit.autopsy.corecomponents.DataContentViewerArtifact.prevPageButton
private

Definition at line 356 of file DataContentViewerArtifact.java.

ETable org.sleuthkit.autopsy.corecomponents.DataContentViewerArtifact.resultsTable
private

Definition at line 362 of file DataContentViewerArtifact.java.

javax.swing.JScrollPane org.sleuthkit.autopsy.corecomponents.DataContentViewerArtifact.resultsTableScrollPane
private

Definition at line 357 of file DataContentViewerArtifact.java.

javax.swing.JPopupMenu org.sleuthkit.autopsy.corecomponents.DataContentViewerArtifact.rightClickMenu
private

Definition at line 358 of file DataContentViewerArtifact.java.

javax.swing.JMenuItem org.sleuthkit.autopsy.corecomponents.DataContentViewerArtifact.selectAllMenuItem
private

Definition at line 359 of file DataContentViewerArtifact.java.

javax.swing.JLabel org.sleuthkit.autopsy.corecomponents.DataContentViewerArtifact.totalPageLabel
private

Definition at line 360 of file DataContentViewerArtifact.java.

final String org.sleuthkit.autopsy.corecomponents.DataContentViewerArtifact.WAIT_TEXT = NbBundle.getMessage(DataContentViewerArtifact.class, "DataContentViewerArtifact.waitText")
staticprivate

Definition at line 76 of file DataContentViewerArtifact.java.


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

Copyright © 2012-2016 Basis Technology. Generated on: Fri Sep 29 2017
This work is licensed under a Creative Commons Attribution-Share Alike 3.0 United States License.