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

Inherits org.sleuthkit.autopsy.corecomponents.AbstractDataResultViewer.

Classes

class  PleasewaitNodeListener
 

Public Member Functions

 DataResultViewerTable (ExplorerManager explorerManager)
 
 DataResultViewerTable ()
 
void clearComponent ()
 
DataResultViewer createInstance ()
 
void expandNode (Node n)
 
Component getComponent ()
 
ExplorerManager getExplorerManager ()
 
Node getSelectedNode ()
 
String getTitle ()
 
boolean isSupported (Node selectedNode)
 
void resetComponent ()
 
void setContentViewer (DataContent contentViewer)
 
void setNode (Node selectedNode)
 
void setSelectedNodes (Node[] selected)
 

Protected Attributes

DataContent contentViewer
 
transient ExplorerManager em
 

Private Member Functions

void getAllChildPropertyHeadersRec (Node parent, int rows, Set< Property<?>> propertiesAcc)
 
String getColumnPreferenceKey (Property<?> prop, String type)
 
void initComponents ()
 
void initialize ()
 
synchronized List< Node.Property<?> > loadState ()
 
void setupTable (final Node root)
 
synchronized void storeState ()
 
void tableScrollPanelComponentResized (java.awt.event.ComponentEvent evt)
 

Private Attributes

Node currentRoot
 
int endColumnIndex = -1
 
final String firstColumnLabel = NbBundle.getMessage(DataResultViewerTable.class, "DataResultViewerTable.firstColLbl")
 
final PleasewaitNodeListener pleasewaitNodeListener = new PleasewaitNodeListener()
 
final Map< Integer, Property<?> > propertiesMap = new TreeMap<>()
 
int startColumnIndex = -1
 
javax.swing.JScrollPane tableScrollPanel
 

Static Private Attributes

static final String PLEASEWAIT_NODE_DISPLAY_NAME = NbBundle.getMessage(DataResultViewerTable.class, "DataResultViewerTable.pleasewaitNodeDisplayName")
 
static final long serialVersionUID = 1L
 
static final Color TAGGED_COLOR = new Color(200, 210, 220)
 

Detailed Description

DataResult sortable table viewer

Definition at line 70 of file DataResultViewerTable.java.

Constructor & Destructor Documentation

org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.DataResultViewerTable ( ExplorerManager  explorerManager)

Creates a DataResultViewerTable object that is compatible with node multiple selection actions.

Parameters
explorerManagerallow for explorer manager sharing

Definition at line 97 of file DataResultViewerTable.java.

References org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.initialize().

org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.DataResultViewerTable ( )

Creates a DataResultViewerTable object that is NOT compatible with node multiple selection actions.

Definition at line 106 of file DataResultViewerTable.java.

References org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.initialize().

Referenced by org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.createInstance().

Member Function Documentation

void org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.clearComponent ( )

Frees the objects that have been allocated by this viewer, in preparation for permanently disposing of it.

Implements org.sleuthkit.autopsy.corecomponentinterfaces.DataResultViewer.

Definition at line 576 of file DataResultViewerTable.java.

References org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.tableScrollPanel.

DataResultViewer org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.createInstance ( )
void org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.expandNode ( Node  n)
void org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.getAllChildPropertyHeadersRec ( Node  parent,
int  rows,
Set< Property<?>>  propertiesAcc 
)
private

Gets regular Bean property set properties from all children and, recursively, subchildren of Node. Note: won't work out the box for lazy load - you need to set all children props for the parent by hand

Parameters
parentNode with at least one child to get properties from
rowsmax number of rows to retrieve properties for (can be used for memory optimization)

Definition at line 275 of file DataResultViewerTable.java.

Referenced by org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.loadState().

String org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.getColumnPreferenceKey ( Property<?>  prop,
String  type 
)
private

Gets a key for the current node and a property of its child nodes to store the column position into a preference file.

Parameters
propProperty of the column
typeThe type of the current node
Returns
A generated key for the preference file

Definition at line 560 of file DataResultViewerTable.java.

Referenced by org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.loadState(), and org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.storeState().

Component org.sleuthkit.autopsy.corecomponents.AbstractDataResultViewer.getComponent ( )
inherited

Definition at line 100 of file AbstractDataResultViewer.java.

ExplorerManager org.sleuthkit.autopsy.corecomponents.AbstractDataResultViewer.getExplorerManager ( )
inherited

Definition at line 105 of file AbstractDataResultViewer.java.

Node org.sleuthkit.autopsy.corecomponents.AbstractDataResultViewer.getSelectedNode ( )
inherited

Definition at line 82 of file AbstractDataResultViewer.java.

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

Gets the title of this viewer

Implements org.sleuthkit.autopsy.corecomponentinterfaces.DataResultViewer.

Definition at line 566 of file DataResultViewerTable.java.

void org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.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 237 of file DataResultViewerTable.java.

References org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.tableScrollPanel, and org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.tableScrollPanelComponentResized().

Referenced by org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.initialize().

void org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.initialize ( )
private
boolean org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.isSupported ( Node  selectedNode)

Checks whether the currently selected root node is supported by this viewer

Parameters
selectedNodethe selected node
Returns
True if supported, else false

Implements org.sleuthkit.autopsy.corecomponentinterfaces.DataResultViewer.

Definition at line 294 of file DataResultViewerTable.java.

synchronized List<Node.Property<?> > org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.loadState ( )
private

Loads the stored column order from the preference file.

Returns
a List<Node.Property<?>> of the preferences in order

Definition at line 503 of file DataResultViewerTable.java.

References org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.getAllChildPropertyHeadersRec(), and org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.getColumnPreferenceKey().

Referenced by org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.setupTable().

void org.sleuthkit.autopsy.corecomponents.AbstractDataResultViewer.resetComponent ( )
inherited

Definition at line 96 of file AbstractDataResultViewer.java.

void org.sleuthkit.autopsy.corecomponents.AbstractDataResultViewer.setContentViewer ( DataContent  contentViewer)
inherited

Definition at line 119 of file AbstractDataResultViewer.java.

void org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.setNode ( Node  selectedNode)
void org.sleuthkit.autopsy.corecomponents.AbstractDataResultViewer.setSelectedNodes ( Node[]  selected)
inherited

Definition at line 110 of file AbstractDataResultViewer.java.

void org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.setupTable ( final Node  root)
private

Create Column Headers based on the Content represented by the Nodes in the table.

Parameters
rootThe parent Node of the ContentNodes

OutlineView makes the first column be the result of node.getDisplayName with the icon. This duplicates our first column, which is the file name, etc. So, pop that property off the list, but use its display name as the header for the column so that the header can change depending on the type of data being displayed.

NOTE: This assumes that the first property is always the one that duplicates getDisplayName(). The current implementation does not allow the first property column to be moved.

This custom renderer extends the renderer that was already being used by the outline table. This renderer colors a row if the tags property of the node is not empty.

Definition at line 350 of file DataResultViewerTable.java.

References org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.loadState(), and org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.tableScrollPanel.

Referenced by org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.PleasewaitNodeListener.childrenAdded(), and org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.setNode().

synchronized void org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.storeState ( )
private
void org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.tableScrollPanelComponentResized ( java.awt.event.ComponentEvent  evt)
private

Member Data Documentation

DataContent org.sleuthkit.autopsy.corecomponents.AbstractDataResultViewer.contentViewer
protectedinherited

Content viewer to respond to selection events Either the main one, or custom one if set

Definition at line 47 of file AbstractDataResultViewer.java.

Node org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.currentRoot
private

Definition at line 85 of file DataResultViewerTable.java.

transient ExplorerManager org.sleuthkit.autopsy.corecomponents.AbstractDataResultViewer.em
protectedinherited

Definition at line 42 of file AbstractDataResultViewer.java.

int org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.endColumnIndex = -1
private

Definition at line 89 of file DataResultViewerTable.java.

final String org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.firstColumnLabel = NbBundle.getMessage(DataResultViewerTable.class, "DataResultViewerTable.firstColLbl")
private

Definition at line 74 of file DataResultViewerTable.java.

final String org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.PLEASEWAIT_NODE_DISPLAY_NAME = NbBundle.getMessage(DataResultViewerTable.class, "DataResultViewerTable.pleasewaitNodeDisplayName")
staticprivate

Definition at line 83 of file DataResultViewerTable.java.

final PleasewaitNodeListener org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.pleasewaitNodeListener = new PleasewaitNodeListener()
private

Definition at line 82 of file DataResultViewerTable.java.

final Map<Integer, Property<?> > org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.propertiesMap = new TreeMap<>()
private

Definition at line 81 of file DataResultViewerTable.java.

final long org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.serialVersionUID = 1L
staticprivate

Definition at line 72 of file DataResultViewerTable.java.

int org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.startColumnIndex = -1
private

Definition at line 88 of file DataResultViewerTable.java.

javax.swing.JScrollPane org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.tableScrollPanel
private
final Color org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.TAGGED_COLOR = new Color(200, 210, 220)
staticprivate

Definition at line 84 of file DataResultViewerTable.java.


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

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