Autopsy  4.10.0
Graphical digital forensics platform for The Sleuth Kit and other tools.
Classes | Public Member Functions | Protected Member Functions | 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.

Inherited by org.sleuthkit.autopsy.commonpropertiessearch.CommonAttributesSearchResultsViewerTable.

Classes

class  ColumnSortInfo
 
class  CountCellRenderer
 
class  HasCommentCellRenderer
 
enum  HasCommentStatus
 
class  IconRendererTableListener
 
enum  Score
 
class  ScoreCellRenderer
 
class  TableListener
 

Public Member Functions

 DataResultViewerTable ()
 
 DataResultViewerTable (ExplorerManager explorerManager)
 
 DataResultViewerTable (ExplorerManager explorerManager, String title)
 
void clearComponent ()
 
DataResultViewer createInstance ()
 
default void expandNode (Node node)
 
Component getComponent ()
 
ExplorerManager getExplorerManager ()
 
String getTitle ()
 
boolean isSupported (Node candidateRootNode)
 
default void resetComponent ()
 
default void setContentViewer (DataContent contentViewer)
 
void setNode (Node rootNode)
 
void setSelectedNodes (Node[] selected)
 

Protected Member Functions

void addTreeExpansionListener (TreeExpansionListener listener)
 
TableColumnModel getColumnModel ()
 
void setColumnWidths ()
 

Private Member Functions

synchronized void assignColumns (List< Property<?>> props)
 
void initComponents ()
 
synchronized List< Node.Property<?> > loadColumnOrder ()
 
synchronized void loadColumnSorting ()
 
synchronized void loadColumnVisibility ()
 
void populateColumnMap ()
 
void setupTable ()
 
synchronized void storeColumnOrder ()
 
synchronized void storeColumnSorting ()
 
synchronized void storeColumnVisibility ()
 

Private Attributes

final Map< String, ETableColumn > columnMap
 
final IconRendererTableListener iconRendererListener
 
final Outline outline
 
org.openide.explorer.view.OutlineView outlineView
 
final TableListener outlineViewListener
 
final Map< Integer, Property<?> > propertiesMap
 
Node rootNode
 
final String title
 

Static Private Attributes

static final ImageIcon COMMENT_ICON = new ImageIcon(ImageUtilities.loadImage(NOTEPAD_ICON_PATH, false))
 
static final String FIRST_COLUMN_LABEL = Bundle.DataResultViewerTable_firstColLbl()
 
static final ImageIcon INTERESTING_SCORE_ICON = new ImageIcon(ImageUtilities.loadImage(YELLOW_CIRCLE_ICON_PATH, false))
 
static final Logger LOGGER = Logger.getLogger(DataResultViewerTable.class.getName())
 
static final ImageIcon NOTABLE_ICON_SCORE = new ImageIcon(ImageUtilities.loadImage(RED_CIRCLE_ICON_PATH, false))
 
static final String NOTEPAD_ICON_PATH = "org/sleuthkit/autopsy/images/notepad16.png"
 
static final String RED_CIRCLE_ICON_PATH = "org/sleuthkit/autopsy/images/red-circle-exclamation.png"
 
static final long serialVersionUID = 1L
 
static final String YELLOW_CIRCLE_ICON_PATH = "org/sleuthkit/autopsy/images/yellow-circle-yield.png"
 

Detailed Description

A tabular result viewer that displays the children of the given root node using an OutlineView.

Instances of this class should use the explorer manager of an ancestor top component to connect the lookups of the nodes displayed in the OutlineView to the actions global context. The explorer manager can be supplied during construction, but the typical use case is for the result viewer to find the ancestor top component's explorer manager at runtime.

Definition at line 86 of file DataResultViewerTable.java.

Constructor & Destructor Documentation

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

Constructs a tabular result viewer that displays the children of the given root node using an OutlineView. The viewer should have an ancestor top component to connect the lookups of the nodes displayed in the OutlineView to the actions global context. The explorer manager will be discovered at runtime.

Definition at line 114 of file DataResultViewerTable.java.

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

Constructs a tabular result viewer that displays the children of a given root node using an OutlineView. The viewer should have an ancestor top component to connect the lookups of the nodes displayed in the OutlineView to the actions global context.

Parameters
explorerManagerThe explorer manager of the ancestor top component.

Definition at line 127 of file DataResultViewerTable.java.

org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.DataResultViewerTable ( ExplorerManager  explorerManager,
String  title 
)

Constructs a tabular result viewer that displays the children of a given root node using an OutlineView with a given title. The viewer should have an ancestor top component to connect the lookups of the nodes displayed in the OutlineView to the actions global context.

Parameters
explorerManagerThe explorer manager of the ancestor top component.
titleThe title.

Definition at line 141 of file DataResultViewerTable.java.

Member Function Documentation

void org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.addTreeExpansionListener ( TreeExpansionListener  listener)
protected

Adds a tree expansion listener to the OutlineView of this tabular results viewer.

Parameters
listenerThe listener

Definition at line 275 of file DataResultViewerTable.java.

Referenced by org.sleuthkit.autopsy.commonpropertiessearch.CommonAttributesSearchResultsViewerTable.CommonAttributesSearchResultsViewerTable().

synchronized void org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.assignColumns ( List< Property<?>>  props)
private

Definition at line 445 of file DataResultViewerTable.java.

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

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

Implements org.sleuthkit.autopsy.corecomponentinterfaces.DataResultViewer.

Definition at line 642 of file DataResultViewerTable.java.

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

Creates a new instance of a tabular result viewer that displays the children of a given root node using an OutlineView. This method exists to make it possible to use the default service provider instance of this class in the "main" results view of the application, while using distinct instances in other places in the UI.

Returns
A new instance of a tabular result viewer,

Implements org.sleuthkit.autopsy.corecomponentinterfaces.DataResultViewer.

Definition at line 190 of file DataResultViewerTable.java.

default void org.sleuthkit.autopsy.corecomponentinterfaces.DataResultViewer.expandNode ( Node  node)
inherited

Sets the node for which this result viewer should provide a view of the underlying application data model object, and expands the node.

Parameters
nodeThe node.
Deprecated:
This API is not used by the application.

Definition at line 126 of file DataResultViewer.java.

TableColumnModel org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.getColumnModel ( )
protected
Component org.sleuthkit.autopsy.corecomponents.AbstractDataResultViewer.getComponent ( )
inherited

Gets the Swing component for this viewer.

Returns
The component.

Implements org.sleuthkit.autopsy.corecomponentinterfaces.DataResultViewer.

Definition at line 87 of file AbstractDataResultViewer.java.

ExplorerManager org.sleuthkit.autopsy.corecomponents.AbstractDataResultViewer.getExplorerManager ( )
inherited
String org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.getTitle ( )

Gets the title of this tabular result viewer.

Returns
title of tab.

Implements org.sleuthkit.autopsy.corecomponentinterfaces.DataResultViewer.

Definition at line 201 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 1034 of file DataResultViewerTable.java.

References org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.FIRST_COLUMN_LABEL.

boolean org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.isSupported ( Node  candidateRootNode)

Indicates whether a given node is supported as a root node for this tabular viewer.

Parameters
candidateRootNodeThe candidate root node.
Returns

Implements org.sleuthkit.autopsy.corecomponentinterfaces.DataResultViewer.

Definition at line 214 of file DataResultViewerTable.java.

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

Gets a list of child properties (columns) in the order persisted in the preference file. Also initialized the properties map with the column order.

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

Definition at line 591 of file DataResultViewerTable.java.

synchronized void org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.loadColumnSorting ( )
private

Reads and applies the column sorting information persisted to the preferences file. Must be called after loadColumnOrder, since it depends on the properties map being initialized, and after assignColumns, since it cannot set the sort on columns that have not been added to the table.

Definition at line 540 of file DataResultViewerTable.java.

synchronized void org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.loadColumnVisibility ( )
private

Reads and applies the column visibility information persisted to the preferences file.

Definition at line 566 of file DataResultViewerTable.java.

void org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.populateColumnMap ( )
private

Definition at line 381 of file DataResultViewerTable.java.

default void org.sleuthkit.autopsy.corecomponentinterfaces.DataResultViewer.resetComponent ( )
inherited

Resets the state of the Swing component for this viewer to its default state.

Implemented in org.sleuthkit.autopsy.corecomponents.DataResultViewerThumbnail.

Definition at line 107 of file DataResultViewer.java.

void org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.setColumnWidths ( )
protected

Definition at line 400 of file DataResultViewerTable.java.

default void org.sleuthkit.autopsy.corecomponentinterfaces.DataResultViewer.setContentViewer ( DataContent  contentViewer)
inherited

Sets a custom content viewer to which nodes selected in this result viewer should be pushed via DataContent.setNode.

Parameters
contentViewerThe content viewer.
Deprecated:
This API is not used by the application.

Definition at line 138 of file DataResultViewer.java.

void org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.setNode ( Node  rootNode)

Sets the current root node of this tabular result viewer.

Parameters
rootNodeThe node to set as the current root node, possibly null.

Implements org.sleuthkit.autopsy.corecomponentinterfaces.DataResultViewer.

Definition at line 225 of file DataResultViewerTable.java.

References org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.TableListener.listenToVisibilityChanges().

void org.sleuthkit.autopsy.corecomponents.AbstractDataResultViewer.setSelectedNodes ( Node[]  selectedNodes)
inherited

Requests selection of the given child nodes of the node passed to setNode. This method should be implemented as a no-op for result viewers that do not display the child nodes of a given root node using a NetBeans explorer view set up to use a given explorer manager.

Parameters
selectedNodesThe child nodes to select.

Implements org.sleuthkit.autopsy.corecomponentinterfaces.DataResultViewer.

Definition at line 78 of file AbstractDataResultViewer.java.

References org.sleuthkit.autopsy.corecomponents.AbstractDataResultViewer.getExplorerManager().

void org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.setupTable ( )
private

Sets up the Outline view of this tabular result viewer by creating column headers based on the children of the current root node. The persisted column order, sorting and visibility is used.

Definition at line 284 of file DataResultViewerTable.java.

References org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.TableListener.listenToVisibilityChanges(), and org.sleuthkit.autopsy.datamodel.NodeSelectionInfo.matches().

synchronized void org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.storeColumnOrder ( )
private

Persists the current column ordering for the child OutlineView of this tabular result viewer using a preferences file.

Definition at line 491 of file DataResultViewerTable.java.

synchronized void org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.storeColumnSorting ( )
private

Persists the current column sorting information using a preferences file.

Definition at line 508 of file DataResultViewerTable.java.

synchronized void org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.storeColumnVisibility ( )
private

Persists the current column visibility information for the child OutlineView of this tabular result viewer using a preferences file.

Definition at line 465 of file DataResultViewerTable.java.

Member Data Documentation

final Map<String, ETableColumn> org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.columnMap
private

Definition at line 100 of file DataResultViewerTable.java.

final ImageIcon org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.COMMENT_ICON = new ImageIcon(ImageUtilities.loadImage(NOTEPAD_ICON_PATH, false))
staticprivate

Definition at line 94 of file DataResultViewerTable.java.

final String org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.FIRST_COLUMN_LABEL = Bundle.DataResultViewerTable_firstColLbl()
staticprivate
final IconRendererTableListener org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.iconRendererListener
private

Definition at line 104 of file DataResultViewerTable.java.

final ImageIcon org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.INTERESTING_SCORE_ICON = new ImageIcon(ImageUtilities.loadImage(YELLOW_CIRCLE_ICON_PATH, false))
staticprivate

Definition at line 95 of file DataResultViewerTable.java.

final Logger org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.LOGGER = Logger.getLogger(DataResultViewerTable.class.getName())
staticprivate

Definition at line 89 of file DataResultViewerTable.java.

final ImageIcon org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.NOTABLE_ICON_SCORE = new ImageIcon(ImageUtilities.loadImage(RED_CIRCLE_ICON_PATH, false))
staticprivate

Definition at line 96 of file DataResultViewerTable.java.

final String org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.NOTEPAD_ICON_PATH = "org/sleuthkit/autopsy/images/notepad16.png"
staticprivate

Definition at line 91 of file DataResultViewerTable.java.

final Outline org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.outline
private

Definition at line 102 of file DataResultViewerTable.java.

org.openide.explorer.view.OutlineView org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.outlineView
private

Definition at line 1050 of file DataResultViewerTable.java.

final TableListener org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.outlineViewListener
private

Definition at line 103 of file DataResultViewerTable.java.

final Map<Integer, Property<?> > org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.propertiesMap
private

Definition at line 101 of file DataResultViewerTable.java.

final String org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.RED_CIRCLE_ICON_PATH = "org/sleuthkit/autopsy/images/red-circle-exclamation.png"
staticprivate

Definition at line 92 of file DataResultViewerTable.java.

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

Definition at line 105 of file DataResultViewerTable.java.

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

Definition at line 88 of file DataResultViewerTable.java.

final String org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.title
private

Definition at line 99 of file DataResultViewerTable.java.

final String org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.YELLOW_CIRCLE_ICON_PATH = "org/sleuthkit/autopsy/images/yellow-circle-yield.png"
staticprivate

Definition at line 93 of file DataResultViewerTable.java.


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

Copyright © 2012-2018 Basis Technology. Generated on: Fri Mar 22 2019
This work is licensed under a Creative Commons Attribution-Share Alike 3.0 United States License.