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

Inherits org.sleuthkit.autopsy.datamodel.AbstractContentNode< BlackboardArtifact >.

Inherited by org.sleuthkit.autopsy.communications.relationships.CallLogNode, org.sleuthkit.autopsy.communications.relationships.ContactNode, org.sleuthkit.autopsy.communications.relationships.MessageNode, and org.sleuthkit.autopsy.datamodel.accounts.Accounts.AccountArtifactNode.

Public Member Functions

 BlackboardArtifactNode (BlackboardArtifact artifact, String iconPath)
 
 BlackboardArtifactNode (BlackboardArtifact artifact)
 
void addNodeProperty (NodeProperty<?> property)
 
Action[] getActions (boolean context)
 
BlackboardArtifact getArtifact ()
 
getContent ()
 
List< Content > getContentChildren ()
 
int getContentChildrenCount ()
 
List< Long > getContentChildrenIds ()
 
String getItemType ()
 
String getName ()
 
String getSourceName ()
 
boolean hasContentChildren ()
 
boolean hasVisibleContentChildren ()
 
boolean isLeafTypeNode ()
 
int read (byte[] buf, long offset, long len) throws TskException
 
void setName (String name)
 

Static Public Member Functions

static boolean contentHasVisibleContentChildren (Content c)
 

Protected Member Functions

final void addCommentProperty (Sheet.Set sheetSet, List< Tag > tags, CorrelationAttributeInstance attribute)
 
final void addCountProperty (Sheet.Set sheetSet, CorrelationAttributeInstance attribute)
 
final void addScorePropertyAndDescription (Sheet.Set sheetSet, List< Tag > tags)
 
void addTagProperty (Sheet.Set sheetSet) throws MissingResourceException
 
final void addTagProperty (Sheet.Set sheetSet, List< Tag > tags)
 
Sheet createSheet ()
 
void finalize () throws Throwable
 
final List< Tag > getAllTagsFromDatabase ()
 
DataResultViewerTable.HasCommentStatus getCommentProperty (List< Tag > tags, CorrelationAttributeInstance attribute)
 
final CorrelationAttributeInstance getCorrelationAttributeInstance ()
 
Pair< Long, String > getCountPropertyAndDescription (Type corrAttrType, String attributeValue, String defaultDescription)
 
Pair< DataResultViewerTable.Score, String > getScorePropertyAndDescription (List< Tag > tags)
 
synchronized void updateSheet (NodeProperty<?>...newProps)
 

Static Protected Attributes

static final String NO_DESCR
 
static final String VALUE_LOADING
 

Private Member Functions

void addEmailMsgProperty (Map< String, Object > map, BlackboardAttribute attribute)
 
void fillPropertyMap (Map< String, Object > map, BlackboardArtifact artifact)
 
String getRootAncestorName ()
 
void unregisterListener ()
 
void updateSheet ()
 

Static Private Member Functions

static Lookup createLookup (BlackboardArtifact artifact)
 

Private Attributes

final BlackboardArtifact artifact
 
List< NodeProperty<?extends Object > > customProperties
 
final PropertyChangeListener listener
 
Content srcContent
 
volatile String translatedSourceName
 
final PropertyChangeListener weakListener = WeakListeners.propertyChange(listener, null)
 

Static Private Attributes

static final Set< Case.Events > CASE_EVENTS_OF_INTEREST
 
static final Cache< Long, Content > contentCache = CacheBuilder.newBuilder().expireAfterWrite(1, TimeUnit.MINUTES).build()
 
static final Logger logger = Logger.getLogger(BlackboardArtifactNode.class.getName())
 
static final Integer[] SHOW_FILE_METADATA
 
static final Integer[] SHOW_UNIQUE_PATH
 

Detailed Description

A BlackboardArtifactNode is an AbstractNode implementation that can be used to represent an artifact of any type.

Definition at line 88 of file BlackboardArtifactNode.java.

Constructor & Destructor Documentation

org.sleuthkit.autopsy.datamodel.BlackboardArtifactNode.BlackboardArtifactNode ( BlackboardArtifact  artifact,
String  iconPath 
)
org.sleuthkit.autopsy.datamodel.BlackboardArtifactNode.BlackboardArtifactNode ( BlackboardArtifact  artifact)

Constructs a BlackboardArtifactNode, an AbstractNode implementation that can be used to represent an artifact of any type.

Parameters
artifactThe artifact to represent.

Definition at line 273 of file BlackboardArtifactNode.java.

References org.sleuthkit.autopsy.datamodel.BlackboardArtifactNode.artifact, and org.sleuthkit.autopsy.datamodel.utils.IconsUtil.getIconFilePath().

Member Function Documentation

final void org.sleuthkit.autopsy.datamodel.BlackboardArtifactNode.addCommentProperty ( Sheet.Set  sheetSet,
List< Tag >  tags,
CorrelationAttributeInstance  attribute 
)
protected

Adds the other occurrences property for the artifact represented by this node to the node property sheet.

Parameters
sheetSetThe property sheet.
tagsThe tags that have been applied to the artifact and its source content.
attributeThe correlation attribute instance to use for the central repository lookup.
Deprecated:
Do not use. The other occurrences property is now computed in a background thread and added to the property sheet via property change event.

Definition at line 1121 of file BlackboardArtifactNode.java.

References org.sleuthkit.autopsy.datamodel.BlackboardArtifactNode.getCommentProperty(), and org.sleuthkit.autopsy.datamodel.AbstractContentNode< BlackboardArtifact >.NO_DESCR.

final void org.sleuthkit.autopsy.datamodel.BlackboardArtifactNode.addCountProperty ( Sheet.Set  sheetSet,
CorrelationAttributeInstance  attribute 
)
protected

Adds the count property for the artifact represented by this node to the node property sheet.

Parameters
sheetSetThe property sheet.
attributeThe correlation attribute instance to use for the central repository lookup.
Deprecated:
Do not use. The count property is now computed in a background thread and added to the property sheet via property change event.

Definition at line 1099 of file BlackboardArtifactNode.java.

References org.sleuthkit.autopsy.centralrepository.datamodel.CorrelationAttributeInstance.getCorrelationType(), org.sleuthkit.autopsy.centralrepository.datamodel.CorrelationAttributeInstance.getCorrelationValue(), and org.sleuthkit.autopsy.datamodel.BlackboardArtifactNode.getCountPropertyAndDescription().

void org.sleuthkit.autopsy.datamodel.BlackboardArtifactNode.addEmailMsgProperty ( Map< String, Object >  map,
BlackboardAttribute  attribute 
)
private

Adds an email message attribute of the artifact this node represents to a map of name-value pairs, where the names are attribute type display names.

Parameters
mapThe map to be populated with the artifact attribute name-value pair.
attributeThe attribute to use to make the map entry.

Definition at line 970 of file BlackboardArtifactNode.java.

References org.sleuthkit.autopsy.datamodel.ContentUtils.getStringTime(), and org.sleuthkit.autopsy.datamodel.BlackboardArtifactNode.srcContent.

Referenced by org.sleuthkit.autopsy.datamodel.BlackboardArtifactNode.fillPropertyMap().

void org.sleuthkit.autopsy.datamodel.BlackboardArtifactNode.addNodeProperty ( NodeProperty<?>  property)

Adds a "custom" property to the property sheet of this node, indepoendent of the artifact this node represents or its source content.

Parameters
propertyThe custom property.

Definition at line 904 of file BlackboardArtifactNode.java.

Referenced by org.sleuthkit.autopsy.datamodel.KeywordHits.createBlackboardArtifactNode().

final void org.sleuthkit.autopsy.datamodel.BlackboardArtifactNode.addScorePropertyAndDescription ( Sheet.Set  sheetSet,
List< Tag >  tags 
)
protected

Adds the score property for the artifact represented by this node to the node property sheet.

Parameters
sheetSetThe property sheet.
tagsThe tags that have been applied to the artifact and its source content.
Deprecated:
Do not use. The score property is now computed in a background thread and added to the property sheet via property change event.

Definition at line 1034 of file BlackboardArtifactNode.java.

References org.sleuthkit.autopsy.datamodel.BlackboardArtifactNode.getScorePropertyAndDescription().

void org.sleuthkit.autopsy.datamodel.BlackboardArtifactNode.addTagProperty ( Sheet.Set  sheetSet) throws MissingResourceException
protected

Adds the tags property for the artifact represented by this node to the node property sheet.

Parameters
sheetSetThe property sheet.
Deprecated:
Do not use. The tags property is now computed in a background thread and added to the property sheet via property change event.

Definition at line 1052 of file BlackboardArtifactNode.java.

References org.sleuthkit.autopsy.casemodule.services.TagsManager.getBlackboardArtifactTagsByArtifact(), org.sleuthkit.autopsy.casemodule.services.TagsManager.getContentTagsByContent(), org.sleuthkit.autopsy.casemodule.Case.getCurrentCaseThrows(), org.sleuthkit.autopsy.casemodule.Case.getServices(), org.sleuthkit.autopsy.casemodule.services.Services.getTagsManager(), and org.sleuthkit.autopsy.datamodel.AbstractContentNode< BlackboardArtifact >.NO_DESCR.

final void org.sleuthkit.autopsy.datamodel.BlackboardArtifactNode.addTagProperty ( Sheet.Set  sheetSet,
List< Tag >  tags 
)
protected

Adds the tags property for the artifact represented by this node to the node property sheet.

Parameters
sheetSetThe property sheet.
tagsThe tags that have been applied to the artifact and its source content.
Deprecated:
Do not use. The tags property is now computed in a background thread and added to the property sheet via property change event.

Definition at line 1075 of file BlackboardArtifactNode.java.

References org.sleuthkit.autopsy.datamodel.AbstractContentNode< BlackboardArtifact >.NO_DESCR.

static boolean org.sleuthkit.autopsy.datamodel.AbstractContentNode< T extends Content >.contentHasVisibleContentChildren ( Content  c)
staticinherited

Return true if the given content object has children. Useful for lazy loading.

Parameters
cThe content object to look for children on
Returns
true if has children

Definition at line 155 of file AbstractContentNode.java.

static Lookup org.sleuthkit.autopsy.datamodel.BlackboardArtifactNode.createLookup ( BlackboardArtifact  artifact)
staticprivate

Creates a Lookup object for this node and populates it with both the artifact this node represents and its source content.

Parameters
artifactThe artifact this node represents.
Returns
The Lookup.

Definition at line 285 of file BlackboardArtifactNode.java.

Referenced by org.sleuthkit.autopsy.datamodel.BlackboardArtifactNode.BlackboardArtifactNode().

Sheet org.sleuthkit.autopsy.datamodel.BlackboardArtifactNode.createSheet ( )
protected
void org.sleuthkit.autopsy.datamodel.BlackboardArtifactNode.fillPropertyMap ( Map< String, Object >  map,
BlackboardArtifact  artifact 
)
private

Converts the attributes of the artifact this node represents to a map of name-value pairs, where the names are attribute type display names.

Parameters
mapThe map to be populated with the artifact attribute name-value pairs.
artifactThe artifact.

Definition at line 920 of file BlackboardArtifactNode.java.

References org.sleuthkit.autopsy.datamodel.BlackboardArtifactNode.addEmailMsgProperty(), org.sleuthkit.autopsy.datamodel.ContentUtils.getStringTime(), and org.sleuthkit.autopsy.datamodel.BlackboardArtifactNode.srcContent.

Referenced by org.sleuthkit.autopsy.datamodel.BlackboardArtifactNode.createSheet().

void org.sleuthkit.autopsy.datamodel.BlackboardArtifactNode.finalize ( ) throws Throwable
protected

Unregisters the application event listener when this node is garbage collected, if this finalizer is actually called.

RC: Isn't there some node lifecycle property change event that could be used to unregister the listener instead?

Exceptions
Throwable

Definition at line 310 of file BlackboardArtifactNode.java.

References org.sleuthkit.autopsy.datamodel.BlackboardArtifactNode.unregisterListener().

Action [] org.sleuthkit.autopsy.datamodel.BlackboardArtifactNode.getActions ( boolean  context)
final List<Tag> org.sleuthkit.autopsy.datamodel.BlackboardArtifactNode.getAllTagsFromDatabase ( )
protected
BlackboardArtifact org.sleuthkit.autopsy.datamodel.BlackboardArtifactNode.getArtifact ( )
DataResultViewerTable.HasCommentStatus org.sleuthkit.autopsy.datamodel.BlackboardArtifactNode.getCommentProperty ( List< Tag >  tags,
CorrelationAttributeInstance  attribute 
)
protected

Computes the value of the comment property ("C" in S, C, O) for the artifact represented by this node.

An icon is displayed in the property sheet if a commented tag has been applied to the artifact or its source content, or if there is a corresponding commented correlation attribute instance in the central repository.

Parameters
tagsThe tags applied to the artifact and its source content.
attributeA correlation attribute instance Ffor the central repository lookup.
Returns
The value of the comment property.

Definition at line 717 of file BlackboardArtifactNode.java.

References org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.HasCommentStatus.CR_AND_TAG_COMMENTS, org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.HasCommentStatus.CR_COMMENT, org.sleuthkit.autopsy.centralrepository.datamodel.CorrelationAttributeInstance.getComment(), org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.HasCommentStatus.NO_COMMENT, org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.HasCommentStatus.TAG_COMMENT, and org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.HasCommentStatus.TAG_NO_COMMENT.

Referenced by org.sleuthkit.autopsy.datamodel.BlackboardArtifactNode.addCommentProperty().

T org.sleuthkit.autopsy.datamodel.AbstractContentNode< T extends Content >.getContent ( )
inherited

Return the content data associated with this node

Returns
the content object wrapped by this node

Definition at line 123 of file AbstractContentNode.java.

List<Content> org.sleuthkit.autopsy.datamodel.AbstractContentNode< T extends Content >.getContentChildren ( )
inherited

Return children of the underlying content.

Returns
list of content children content.

Definition at line 235 of file AbstractContentNode.java.

int org.sleuthkit.autopsy.datamodel.AbstractContentNode< T extends Content >.getContentChildrenCount ( )
inherited

Get count of the underlying content object children.

Useful for lazy loading.

Returns
content children count

Definition at line 257 of file AbstractContentNode.java.

List<Long> org.sleuthkit.autopsy.datamodel.AbstractContentNode< T extends Content >.getContentChildrenIds ( )
inherited

Return ids of children of the underlying content. The ids can be treated as keys - useful for lazy loading.

Returns
list of content ids of children content.

Definition at line 215 of file AbstractContentNode.java.

final CorrelationAttributeInstance org.sleuthkit.autopsy.datamodel.BlackboardArtifactNode.getCorrelationAttributeInstance ( )
protected

Gets the correlation attribute for the MD5 hash of the source file of the artifact represented by this node. The correlation attribute instance can only be returned if the central repository is enabled and the source content is a file.

Returns
The correlation attribute instance, may be null.

Definition at line 693 of file BlackboardArtifactNode.java.

References org.sleuthkit.autopsy.centralrepository.datamodel.CorrelationAttributeUtil.getCorrAttrForFile(), and org.sleuthkit.autopsy.centralrepository.datamodel.CentralRepository.isEnabled().

Pair<Long, String> org.sleuthkit.autopsy.datamodel.BlackboardArtifactNode.getCountPropertyAndDescription ( Type  corrAttrType,
String  attributeValue,
String  defaultDescription 
)
protected

Computes the value of the other occurrences property ("O" in S, C, O) for the artifact represented by this node. The value of the other occurrences property is the number of other data sources this artifact appears in according to a correlation attribute instance lookup in the central repository, plus one for the data source for this instance of the artifact.

Parameters
corrAttrTypeThe correlation attribute instance type to use for the central repsoitory lookup.
attributeValueThe correlation attribute instane value to use for the central repsoitory lookup.
defaultDescriptionA default description.
Returns
The value of the occurrences property as a data sources count and a description string.

Definition at line 853 of file BlackboardArtifactNode.java.

References org.sleuthkit.autopsy.centralrepository.datamodel.CentralRepository.getCountUniqueCaseDataSourceTuplesHavingTypeValue(), org.sleuthkit.autopsy.centralrepository.datamodel.CorrelationAttributeInstance.Type.getDisplayName(), and org.sleuthkit.autopsy.centralrepository.datamodel.CentralRepository.getInstance().

Referenced by org.sleuthkit.autopsy.datamodel.BlackboardArtifactNode.addCountProperty().

String org.sleuthkit.autopsy.datamodel.BlackboardArtifactNode.getItemType ( )

Definition at line 1005 of file BlackboardArtifactNode.java.

String org.sleuthkit.autopsy.datamodel.AbstractContentNode< T extends Content >.getName ( )
inherited

Definition at line 133 of file AbstractContentNode.java.

String org.sleuthkit.autopsy.datamodel.BlackboardArtifactNode.getRootAncestorName ( )
private

Gets the name of the root ancestor of the source content for the artifact represented by this node.

Returns
The root ancestor name or the empty string if an error occurs.

Definition at line 884 of file BlackboardArtifactNode.java.

References org.sleuthkit.autopsy.datamodel.BlackboardArtifactNode.srcContent.

Referenced by org.sleuthkit.autopsy.datamodel.BlackboardArtifactNode.createSheet().

Pair<DataResultViewerTable.Score, String> org.sleuthkit.autopsy.datamodel.BlackboardArtifactNode.getScorePropertyAndDescription ( List< Tag >  tags)
protected

Computes the value of the score property ("S" in S, C, O) for the artifact represented by this node. The score property indicates whether the artifact or its source content is notable or interesting.

IMPORTANT: Notability takes precedence when computing the score.

A red icon will be displayed in the property sheet if the hash of the source file has been found in a notable hash set or if either the artifact or its source content has been tagged with a notable tag. A yellow icon will be displayed if the source file belongs to an interesting file set or either the artifact or its source content has been tagged with a non-notable tag.

Parameters
tagsThe tags that have been applied to the artifact and its source content.
Returns
The value of the score property as an enum element and a description string for dislpay in a tool tip.

Definition at line 767 of file BlackboardArtifactNode.java.

References org.sleuthkit.autopsy.modules.hashdatabase.HashDbManager.getInstance(), org.sleuthkit.autopsy.modules.hashdatabase.HashDbManager.getKnownBadFileHashSets(), org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.Score.INTERESTING_SCORE, org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.Score.NO_SCORE, and org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.Score.NOTABLE_SCORE.

Referenced by org.sleuthkit.autopsy.datamodel.BlackboardArtifactNode.addScorePropertyAndDescription().

String org.sleuthkit.autopsy.datamodel.BlackboardArtifactNode.getSourceName ( )

Gets the name of the source content of the artifact represented by this node.

Returns
The source content name.

Definition at line 382 of file BlackboardArtifactNode.java.

boolean org.sleuthkit.autopsy.datamodel.AbstractContentNode< T extends Content >.hasContentChildren ( )
inherited

Return true if the underlying content object has children Useful for lazy loading.

Returns
true if has children

Definition at line 195 of file AbstractContentNode.java.

boolean org.sleuthkit.autopsy.datamodel.AbstractContentNode< T extends Content >.hasVisibleContentChildren ( )
inherited

Return true if the underlying content object has children Useful for lazy loading.

Returns
true if has children

Definition at line 143 of file AbstractContentNode.java.

boolean org.sleuthkit.autopsy.datamodel.BlackboardArtifactNode.isLeafTypeNode ( )

Definition at line 1000 of file BlackboardArtifactNode.java.

int org.sleuthkit.autopsy.datamodel.AbstractContentNode< T extends Content >.read ( byte[]  buf,
long  offset,
long  len 
) throws TskException
inherited

Reads the content of this node (of the underlying content object).

Parameters
bufbuffer to read into
offsetthe starting offset in the content object
lenthe length to read
Returns
the bytes read
Exceptions
TskExceptionexception thrown if the requested part of content could not be read

Definition at line 283 of file AbstractContentNode.java.

void org.sleuthkit.autopsy.datamodel.AbstractContentNode< T extends Content >.setName ( String  name)
inherited
void org.sleuthkit.autopsy.datamodel.BlackboardArtifactNode.unregisterListener ( )
private
synchronized void org.sleuthkit.autopsy.datamodel.AbstractContentNode< T extends Content >.updateSheet ( NodeProperty<?>...  newProps)
protectedinherited

Updates the values of the properties in the current property sheet with the new properties being passed in. Only if that property exists in the current sheet will it be applied. That way, we allow for subclasses to add their own (or omit some!) properties and we will not accidentally disrupt their UI.

Race condition if not synchronized. Only one update should be applied at a time.

Parameters
newPropsNew file property instances to be updated in the current sheet.

Definition at line 300 of file AbstractContentNode.java.

void org.sleuthkit.autopsy.datamodel.BlackboardArtifactNode.updateSheet ( )
private

Refreshes this node's property sheet.

Definition at line 874 of file BlackboardArtifactNode.java.

References org.sleuthkit.autopsy.datamodel.BlackboardArtifactNode.createSheet().

Member Data Documentation

final BlackboardArtifact org.sleuthkit.autopsy.datamodel.BlackboardArtifactNode.artifact
private
final Set<Case.Events> org.sleuthkit.autopsy.datamodel.BlackboardArtifactNode.CASE_EVENTS_OF_INTEREST
staticprivate
Initial value:
= EnumSet.of(
Case.Events.BLACKBOARD_ARTIFACT_TAG_ADDED,
Case.Events.BLACKBOARD_ARTIFACT_TAG_DELETED,
Case.Events.CONTENT_TAG_ADDED,
Case.Events.CONTENT_TAG_DELETED,
Case.Events.CR_COMMENT_CHANGED,
Case.Events.CURRENT_CASE)

Definition at line 103 of file BlackboardArtifactNode.java.

Referenced by org.sleuthkit.autopsy.datamodel.BlackboardArtifactNode.BlackboardArtifactNode(), and org.sleuthkit.autopsy.datamodel.BlackboardArtifactNode.unregisterListener().

final Cache<Long, Content> org.sleuthkit.autopsy.datamodel.BlackboardArtifactNode.contentCache = CacheBuilder.newBuilder().expireAfterWrite(1, TimeUnit.MINUTES).build()
staticprivate

Definition at line 97 of file BlackboardArtifactNode.java.

List<NodeProperty<? extends Object> > org.sleuthkit.autopsy.datamodel.BlackboardArtifactNode.customProperties
private

Definition at line 139 of file BlackboardArtifactNode.java.

final PropertyChangeListener org.sleuthkit.autopsy.datamodel.BlackboardArtifactNode.listener
private
final Logger org.sleuthkit.autopsy.datamodel.BlackboardArtifactNode.logger = Logger.getLogger(BlackboardArtifactNode.class.getName())
staticprivate

Definition at line 90 of file BlackboardArtifactNode.java.

final String org.sleuthkit.autopsy.datamodel.AbstractContentNode< T extends Content >.NO_DESCR
staticprotectedinherited
final Integer [] org.sleuthkit.autopsy.datamodel.BlackboardArtifactNode.SHOW_FILE_METADATA
staticprivate
Initial value:
= new Integer[]{
BlackboardArtifact.ARTIFACT_TYPE.TSK_INTERESTING_FILE_HIT.getTypeID()
}

Definition at line 126 of file BlackboardArtifactNode.java.

final Integer [] org.sleuthkit.autopsy.datamodel.BlackboardArtifactNode.SHOW_UNIQUE_PATH
staticprivate
Initial value:
= new Integer[]{
BlackboardArtifact.ARTIFACT_TYPE.TSK_HASHSET_HIT.getTypeID(),
BlackboardArtifact.ARTIFACT_TYPE.TSK_KEYWORD_HIT.getTypeID(),
BlackboardArtifact.ARTIFACT_TYPE.TSK_INTERESTING_FILE_HIT.getTypeID(),
BlackboardArtifact.ARTIFACT_TYPE.TSK_INTERESTING_ARTIFACT_HIT.getTypeID()
}

Definition at line 115 of file BlackboardArtifactNode.java.

Content org.sleuthkit.autopsy.datamodel.BlackboardArtifactNode.srcContent
private
volatile String org.sleuthkit.autopsy.datamodel.BlackboardArtifactNode.translatedSourceName
private

Definition at line 132 of file BlackboardArtifactNode.java.

final String org.sleuthkit.autopsy.datamodel.AbstractContentNode< T extends Content >.VALUE_LOADING
staticprotectedinherited
final PropertyChangeListener org.sleuthkit.autopsy.datamodel.BlackboardArtifactNode.weakListener = WeakListeners.propertyChange(listener, null)
private

Definition at line 227 of file BlackboardArtifactNode.java.


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

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