Go to the documentation of this file.
19package org.sleuthkit.autopsy.contentviewers.artifactviewers;
21import javax.swing.JButton;
22import javax.swing.JLabel;
28class AccountPersonaSearcherData {
31 private final String accountIdentifer;
33 private final JLabel personaNameLabel;
35 private final JButton personaActionButton;
44 AccountPersonaSearcherData(String accountIdentifer, JLabel personaNameLabel, JButton personaActionButton) {
45 this.accountIdentifer = accountIdentifer;
46 this.personaNameLabel = personaNameLabel;
47 this.personaActionButton = personaActionButton;
55 public String getAccountIdentifer() {
56 return accountIdentifer;
64 public JLabel getPersonaNameLabel() {
65 return personaNameLabel;
73 public JButton getPersonaActionButton() {
74 return personaActionButton;
Copyright © 2012-2024 Sleuth Kit Labs. Generated on:
This work is licensed under a
Creative Commons Attribution-Share Alike 3.0 United States License.