19 package org.sleuthkit.autopsy.communications.relationships;
21 import java.lang.reflect.InvocationTargetException;
22 import org.openide.util.Exceptions;
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) {
45 return getValue().toString();
46 }
catch (IllegalAccessException | InvocationTargetException ex) {
47 Exceptions.printStackTrace(ex);
static String getAccoutToolTipText(String displayName, Account account)