Go to the documentation of this file.
19package org.sleuthkit.autopsy.communications.relationships;
21import java.lang.reflect.InvocationTargetException;
22import org.openide.util.Exceptions;
23import org.sleuthkit.autopsy.datamodel.NodeProperty;
24import org.sleuthkit.datamodel.Account;
32 private final Account account;
34 AccountNodeProperty(String name, String displayName, T
value, Account account) {
35 super(name, displayName,
"",
value);
36 this.account = account;
40 public String getShortDescription() {
42 if (account !=
null) {
46 }
catch (IllegalAccessException | InvocationTargetException ex) {
47 Exceptions.printStackTrace(ex);
static String getAccoutToolTipText(String displayName, Account account)
Copyright © 2012-2024 Sleuth Kit Labs. Generated on:
This work is licensed under a
Creative Commons Attribution-Share Alike 3.0 United States License.