Autopsy  4.19.0
Graphical digital forensics platform for The Sleuth Kit and other tools.
ContextViewer.java
Go to the documentation of this file.
1 /*
2  * Autopsy Forensic Browser
3  *
4  * Copyright 2019-2021 Basis Technology Corp.
5  * Contact: carrier <at> sleuthkit <dot> org
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  */
19 package org.sleuthkit.autopsy.contentviewers.contextviewer;
20 
21 import java.awt.Component;
22 import java.awt.Insets;
23 import java.util.ArrayList;
24 import java.util.Collections;
25 import java.util.Comparator;
26 import java.util.HashMap;
27 import java.util.List;
28 import java.util.Map;
29 import java.util.logging.Level;
30 import javax.swing.BoxLayout;
31 import static javax.swing.ScrollPaneConstants.HORIZONTAL_SCROLLBAR_AS_NEEDED;
32 import javax.swing.border.EmptyBorder;
33 import org.apache.commons.lang.StringUtils;
34 import org.openide.nodes.Node;
35 import org.openide.util.NbBundle;
36 import org.openide.util.lookup.ServiceProvider;
42 import org.sleuthkit.datamodel.AbstractFile;
43 import org.sleuthkit.datamodel.BlackboardArtifact;
44 import static org.sleuthkit.datamodel.BlackboardArtifact.ARTIFACT_TYPE.TSK_ASSOCIATED_OBJECT;
45 import org.sleuthkit.datamodel.BlackboardAttribute;
46 import org.sleuthkit.datamodel.SleuthkitCase;
47 import org.sleuthkit.datamodel.TskCoreException;
48 
54 @ServiceProvider(service = DataContentViewer.class, position = 8)
55 public final class ContextViewer extends javax.swing.JPanel implements DataContentViewer {
56 
57  private static final long serialVersionUID = 1L;
58  private static final Logger logger = Logger.getLogger(ContextViewer.class.getName());
59  private static final int ARTIFACT_STR_MAX_LEN = 1024;
60  private static final int ATTRIBUTE_STR_MAX_LEN = 200;
61 
62  private final static Insets FIRST_HEADER_INSETS = new Insets(0, 0, 0, 0);
63  private final static Insets HEADER_INSETS = new Insets(ContentViewerDefaults.getSectionSpacing(), 0, ContentViewerDefaults.getLineSpacing(), 0);
64  private final static Insets DATA_ROW_INSETS = new Insets(0, ContentViewerDefaults.getSectionIndent(), ContentViewerDefaults.getLineSpacing(), 0);
65 
66  // defines a list of artifacts that provide context for a file
67  private static final List<BlackboardArtifact.ARTIFACT_TYPE> CONTEXT_ARTIFACTS = new ArrayList<>();
68  private final List<ContextSourcePanel> contextSourcePanels = new ArrayList<>();
69  private final List<ContextUsagePanel> contextUsagePanels = new ArrayList<>();
70 
71  static {
72  CONTEXT_ARTIFACTS.add(TSK_ASSOCIATED_OBJECT);
73  }
74 
78  public ContextViewer() {
79 
80  initComponents();
81  jScrollPane.setHorizontalScrollBarPolicy(HORIZONTAL_SCROLLBAR_AS_NEEDED);
82  }
83 
89  @SuppressWarnings("unchecked")
90  // <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
91  private void initComponents() {
92 
93  jSourcePanel = new javax.swing.JPanel();
94  javax.swing.JLabel jSourceLabel = new javax.swing.JLabel();
95  jUsagePanel = new javax.swing.JPanel();
96  javax.swing.JLabel jUsageLabel = new javax.swing.JLabel();
97  jUnknownPanel = new javax.swing.JPanel();
98  javax.swing.JLabel jUnknownLabel = new javax.swing.JLabel();
99  jScrollPane = new javax.swing.JScrollPane();
100 
101  jSourcePanel.setBorder(new EmptyBorder(FIRST_HEADER_INSETS));
102  jSourcePanel.setLayout(new javax.swing.BoxLayout(jSourcePanel, javax.swing.BoxLayout.PAGE_AXIS));
103 
104  jSourceLabel.setFont(ContentViewerDefaults.getHeaderFont());
105  org.openide.awt.Mnemonics.setLocalizedText(jSourceLabel, org.openide.util.NbBundle.getMessage(ContextViewer.class, "ContextViewer.jSourceLabel.text")); // NOI18N
106  jSourcePanel.add(jSourceLabel);
107 
108  jUsagePanel.setBorder(new EmptyBorder(HEADER_INSETS));
109  jUsagePanel.setLayout(new javax.swing.BoxLayout(jUsagePanel, javax.swing.BoxLayout.PAGE_AXIS));
110 
111  jUsageLabel.setFont(ContentViewerDefaults.getHeaderFont()
112  );
113  org.openide.awt.Mnemonics.setLocalizedText(jUsageLabel, org.openide.util.NbBundle.getMessage(ContextViewer.class, "ContextViewer.jUsageLabel.text")); // NOI18N
114  jUsagePanel.add(jUsageLabel);
115 
116  jUnknownPanel.setLayout(new javax.swing.BoxLayout(jUnknownPanel, javax.swing.BoxLayout.PAGE_AXIS));
117 
118  org.openide.awt.Mnemonics.setLocalizedText(jUnknownLabel, org.openide.util.NbBundle.getMessage(ContextViewer.class, "ContextViewer.jUnknownLabel.text")); // NOI18N
119  jUnknownLabel.setBorder(new EmptyBorder(DATA_ROW_INSETS));
120  jUnknownPanel.add(jUnknownLabel);
121 
122  setPreferredSize(new java.awt.Dimension(0, 0));
123 
124  jScrollPane.setPreferredSize(new java.awt.Dimension(16, 16));
125 
126  javax.swing.GroupLayout layout = new javax.swing.GroupLayout(this);
127  this.setLayout(layout);
128  layout.setHorizontalGroup(
129  layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
130  .addComponent(jScrollPane, javax.swing.GroupLayout.DEFAULT_SIZE, 509, Short.MAX_VALUE)
131  );
132  layout.setVerticalGroup(
133  layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
134  .addComponent(jScrollPane, javax.swing.GroupLayout.DEFAULT_SIZE, 335, Short.MAX_VALUE)
135  );
136  }// </editor-fold>//GEN-END:initComponents
137 
138  @Override
139  public void setNode(Node selectedNode) {
140  if ((selectedNode == null) || (!isSupported(selectedNode))) {
141  resetComponent();
142  return;
143  }
144 
145  AbstractFile file = selectedNode.getLookup().lookup(AbstractFile.class);
146  try {
147  populatePanels(file);
148  } catch (NoCurrentCaseException | TskCoreException ex) {
149  logger.log(Level.SEVERE, String.format("Exception displaying context for file %s", file.getName()), ex); //NON-NLS
150  }
151  }
152 
153  @NbBundle.Messages({
154  "ContextViewer.title=Context",
155  "ContextViewer.toolTip=Displays context for selected file."
156  })
157 
158  @Override
159  public String getTitle() {
160  return Bundle.ContextViewer_title();
161  }
162 
163  @Override
164  public String getToolTip() {
165  return Bundle.ContextViewer_toolTip();
166  }
167 
168  @Override
169  public DataContentViewer createInstance() {
170  return new ContextViewer();
171  }
172 
173  @Override
174  public Component getComponent() {
175  return this;
176  }
177 
178  @Override
179  public void resetComponent() {
180  contextSourcePanels.clear();
181  contextUsagePanels.clear();
182  }
183 
184  @Override
185  public boolean isSupported(Node node) {
186 
187  // check if the node has an abstract file and the file has any context defining artifacts.
188  if (node.getLookup().lookup(AbstractFile.class) != null) {
189  AbstractFile abstractFile = node.getLookup().lookup(AbstractFile.class);
190  for (BlackboardArtifact.ARTIFACT_TYPE artifactType : CONTEXT_ARTIFACTS) {
191  List<BlackboardArtifact> artifactsList;
192  try {
193  artifactsList = abstractFile.getArtifacts(artifactType);
194  if (!artifactsList.isEmpty()) {
195  return true;
196  }
197  } catch (TskCoreException ex) {
198  logger.log(Level.SEVERE, String.format("Exception while looking up context artifacts for file %s", abstractFile), ex); //NON-NLS
199  }
200  }
201 
202  }
203 
204  return false;
205  }
206 
207  @Override
208  public int isPreferred(Node node) {
209  // this is a low preference viewer.
210  return 1;
211  }
212 
213  @NbBundle.Messages({
214  "ContextViewer.unknownSource=Unknown ",
215  })
225  private void populatePanels(AbstractFile sourceFile) throws NoCurrentCaseException, TskCoreException {
226 
227  SleuthkitCase tskCase = Case.getCurrentCaseThrows().getSleuthkitCase();
228 
229  // Check for all context artifacts
230  boolean foundASource = false;
231  for (BlackboardArtifact.ARTIFACT_TYPE artifactType : CONTEXT_ARTIFACTS) {
232  List<BlackboardArtifact> artifactsList = tskCase.getBlackboardArtifacts(artifactType, sourceFile.getId());
233 
234  foundASource = !artifactsList.isEmpty();
235  for (BlackboardArtifact contextArtifact : artifactsList) {
236  addAssociatedArtifactToPanel(contextArtifact);
237  }
238  }
239  javax.swing.JPanel contextContainer = new javax.swing.JPanel();
240  contextContainer.setLayout(new BoxLayout(contextContainer, BoxLayout.Y_AXIS));
241  contextContainer.setBorder(new EmptyBorder(ContentViewerDefaults.getPanelInsets()));
242 
243  contextContainer.add(jSourcePanel);
244 
245  if (contextSourcePanels.isEmpty()) {
246  contextContainer.add(jUnknownPanel);
247  } else {
248  for (javax.swing.JPanel sourcePanel : contextSourcePanels) {
249  contextContainer.add(sourcePanel);
250  contextContainer.setAlignmentX(0);
251  }
252  }
253  contextContainer.add(jUsagePanel);
254  if (contextUsagePanels.isEmpty()) {
255  contextContainer.add(jUnknownPanel);
256  } else {
257  for (javax.swing.JPanel usagePanel : contextUsagePanels) {
258  contextContainer.add(usagePanel);
259  contextContainer.setAlignmentX(0);
260  }
261  }
262 
263  contextContainer.setBackground(ContentViewerDefaults.getPanelBackground());
264  contextContainer.setEnabled(foundASource);
265  contextContainer.setVisible(foundASource);
266  jScrollPane.getViewport().setView(contextContainer);
267  jScrollPane.setEnabled(foundASource);
268  jScrollPane.setVisible(foundASource);
269  jScrollPane.repaint();
270  jScrollPane.revalidate();
271 
272 
273  }
274 
283  private void addAssociatedArtifactToPanel(BlackboardArtifact artifact) throws TskCoreException {
284 
285  if (BlackboardArtifact.ARTIFACT_TYPE.TSK_ASSOCIATED_OBJECT.getTypeID() == artifact.getArtifactTypeID()) {
286  BlackboardAttribute associatedArtifactAttribute = artifact.getAttribute(new BlackboardAttribute.Type(BlackboardAttribute.ATTRIBUTE_TYPE.TSK_ASSOCIATED_ARTIFACT));
287  if (associatedArtifactAttribute != null) {
288  long artifactId = associatedArtifactAttribute.getValueLong();
289  BlackboardArtifact associatedArtifact = artifact.getSleuthkitCase().getBlackboardArtifact(artifactId);
290 
291  addArtifactToPanels(associatedArtifact);
292  }
293  }
294  }
295 
303  @NbBundle.Messages({
304  "ContextViewer.attachmentSource=Attached to: ",
305  "ContextViewer.downloadSource=Downloaded from: ",
306  "ContextViewer.recentDocs=Recent Documents: ",
307  "ContextViewer.programExecution=Program Execution: "
308  })
309  private void addArtifactToPanels(BlackboardArtifact associatedArtifact) throws TskCoreException {
310  Long dateTime = getArtifactDateTime(associatedArtifact);
311  if (BlackboardArtifact.ARTIFACT_TYPE.TSK_MESSAGE.getTypeID() == associatedArtifact.getArtifactTypeID()
312  || BlackboardArtifact.ARTIFACT_TYPE.TSK_EMAIL_MSG.getTypeID() == associatedArtifact.getArtifactTypeID()) {
313  String sourceName = Bundle.ContextViewer_attachmentSource();
314  String sourceText = msgArtifactToAbbreviatedString(associatedArtifact);
315  ContextSourcePanel sourcePanel = new ContextSourcePanel(sourceName, sourceText, associatedArtifact, dateTime);
316  sourcePanel.setBorder(new EmptyBorder(DATA_ROW_INSETS));
317  sourcePanel.setAlignmentX(0);
318  contextSourcePanels.add(sourcePanel);
319 
320  } else if (BlackboardArtifact.ARTIFACT_TYPE.TSK_WEB_DOWNLOAD.getTypeID() == associatedArtifact.getArtifactTypeID()
321  || BlackboardArtifact.ARTIFACT_TYPE.TSK_WEB_CACHE.getTypeID() == associatedArtifact.getArtifactTypeID()) {
322  String sourceName = Bundle.ContextViewer_downloadSource();
323  String sourceText = webDownloadArtifactToString(associatedArtifact);
324  ContextSourcePanel sourcePanel = new ContextSourcePanel(sourceName, sourceText, associatedArtifact, dateTime);
325  sourcePanel.setBorder(new EmptyBorder(DATA_ROW_INSETS));
326  sourcePanel.setAlignmentX(0);
327  contextSourcePanels.add(sourcePanel);
328 
329  } else if (BlackboardArtifact.ARTIFACT_TYPE.TSK_RECENT_OBJECT.getTypeID() == associatedArtifact.getArtifactTypeID()) {
330  String sourceName = Bundle.ContextViewer_recentDocs();
331  String sourceText = recentDocArtifactToString(associatedArtifact);
332  ContextUsagePanel usagePanel = new ContextUsagePanel(sourceName, sourceText, associatedArtifact, dateTime);
333  usagePanel.setBorder(new EmptyBorder(DATA_ROW_INSETS));
334  usagePanel.setAlignmentX(0);
335  contextUsagePanels.add(usagePanel);
336 
337  } else if (BlackboardArtifact.ARTIFACT_TYPE.TSK_PROG_RUN.getTypeID() == associatedArtifact.getArtifactTypeID()) {
338  String sourceName = Bundle.ContextViewer_programExecution();
339  String sourceText = programExecArtifactToString(associatedArtifact);
340  ContextUsagePanel usagePanel = new ContextUsagePanel(sourceName, sourceText, associatedArtifact, dateTime);
341  usagePanel.setBorder(new EmptyBorder(DATA_ROW_INSETS));
342  usagePanel.setAlignmentX(0);
343  contextUsagePanels.add(usagePanel);
344  }
345 
346  Collections.sort(contextSourcePanels, new SortByDateTime());
347  Collections.sort(contextUsagePanels, new SortByDateTime());
348  }
349 
360  @NbBundle.Messages({
361  "ContextViewer.downloadURL=URL",
362  "ContextViewer.downloadedOn=On"
363  })
364  private String webDownloadArtifactToString(BlackboardArtifact artifact) throws TskCoreException {
365  StringBuilder sb = new StringBuilder(ARTIFACT_STR_MAX_LEN);
366  Map<BlackboardAttribute.ATTRIBUTE_TYPE, BlackboardAttribute> attributesMap = getAttributesMap(artifact);
367 
368  if (BlackboardArtifact.ARTIFACT_TYPE.TSK_WEB_DOWNLOAD.getTypeID() == artifact.getArtifactTypeID()
369  || BlackboardArtifact.ARTIFACT_TYPE.TSK_WEB_CACHE.getTypeID() == artifact.getArtifactTypeID()) {
370  appendAttributeString(sb, BlackboardAttribute.ATTRIBUTE_TYPE.TSK_URL, attributesMap, Bundle.ContextViewer_downloadURL());
371  appendAttributeString(sb, BlackboardAttribute.ATTRIBUTE_TYPE.TSK_DATETIME_CREATED, attributesMap, Bundle.ContextViewer_downloadedOn());
372  }
373  return sb.toString();
374  }
375 
386  @NbBundle.Messages({
387  "ContextViewer.on=Opened at",
388  "ContextViewer.unknown=Opened at unknown time"
389  })
390  private String recentDocArtifactToString(BlackboardArtifact artifact) throws TskCoreException {
391  StringBuilder sb = new StringBuilder(ARTIFACT_STR_MAX_LEN);
392  Map<BlackboardAttribute.ATTRIBUTE_TYPE, BlackboardAttribute> attributesMap = getAttributesMap(artifact);
393 
394  BlackboardAttribute attribute = attributesMap.get(BlackboardAttribute.ATTRIBUTE_TYPE.TSK_DATETIME);
395 
396  if (BlackboardArtifact.ARTIFACT_TYPE.TSK_RECENT_OBJECT.getTypeID() == artifact.getArtifactTypeID()) {
397  if (attribute != null && attribute.getValueLong() > 0) {
398  appendAttributeString(sb, BlackboardAttribute.ATTRIBUTE_TYPE.TSK_DATETIME, attributesMap, Bundle.ContextViewer_on());
399  } else {
400  sb.append(Bundle.ContextViewer_unknown());
401  }
402  }
403  return sb.toString();
404  }
405 
416  @NbBundle.Messages({
417  "ContextViewer.runOn=Program Run On",
418  "ContextViewer.runUnknown= Program Run at unknown time"
419  })
420  private String programExecArtifactToString(BlackboardArtifact artifact) throws TskCoreException {
421  StringBuilder sb = new StringBuilder(ARTIFACT_STR_MAX_LEN);
422  Map<BlackboardAttribute.ATTRIBUTE_TYPE, BlackboardAttribute> attributesMap = getAttributesMap(artifact);
423 
424  BlackboardAttribute attribute = attributesMap.get(BlackboardAttribute.ATTRIBUTE_TYPE.TSK_DATETIME);
425 
426  if (BlackboardArtifact.ARTIFACT_TYPE.TSK_PROG_RUN.getTypeID() == artifact.getArtifactTypeID()) {
427  if (attribute != null && attribute.getValueLong() > 0) {
428  appendAttributeString(sb, BlackboardAttribute.ATTRIBUTE_TYPE.TSK_DATETIME, attributesMap, Bundle.ContextViewer_runOn());
429  } else {
430  sb.append(Bundle.ContextViewer_runUnknown());
431  }
432  }
433  return sb.toString();
434  }
435 
445  @NbBundle.Messages({
446  "ContextViewer.message=Message",
447  "ContextViewer.email=Email",
448  "ContextViewer.messageFrom=From",
449  "ContextViewer.messageTo=To",
450  "ContextViewer.messageOn=On",})
451  private String msgArtifactToAbbreviatedString(BlackboardArtifact artifact) throws TskCoreException {
452 
453  StringBuilder sb = new StringBuilder(ARTIFACT_STR_MAX_LEN);
454  Map<BlackboardAttribute.ATTRIBUTE_TYPE, BlackboardAttribute> attributesMap = getAttributesMap(artifact);
455 
456  if (BlackboardArtifact.ARTIFACT_TYPE.TSK_MESSAGE.getTypeID() == artifact.getArtifactTypeID()) {
457  sb.append(Bundle.ContextViewer_message()).append(' ');
458  appendAttributeString(sb, BlackboardAttribute.ATTRIBUTE_TYPE.TSK_PHONE_NUMBER_FROM, attributesMap, Bundle.ContextViewer_messageFrom());
459  appendAttributeString(sb, BlackboardAttribute.ATTRIBUTE_TYPE.TSK_PHONE_NUMBER_TO, attributesMap, Bundle.ContextViewer_messageTo());
460  appendAttributeString(sb, BlackboardAttribute.ATTRIBUTE_TYPE.TSK_DATETIME, attributesMap, Bundle.ContextViewer_messageOn());
461  } else if (BlackboardArtifact.ARTIFACT_TYPE.TSK_EMAIL_MSG.getTypeID() == artifact.getArtifactTypeID()) {
462  sb.append(Bundle.ContextViewer_email()).append(' ');
463  appendAttributeString(sb, BlackboardAttribute.ATTRIBUTE_TYPE.TSK_EMAIL_FROM, attributesMap, Bundle.ContextViewer_messageFrom());
464  appendAttributeString(sb, BlackboardAttribute.ATTRIBUTE_TYPE.TSK_EMAIL_TO, attributesMap, Bundle.ContextViewer_messageTo());
465  appendAttributeString(sb, BlackboardAttribute.ATTRIBUTE_TYPE.TSK_DATETIME_SENT, attributesMap, Bundle.ContextViewer_messageOn());
466  }
467  return sb.toString();
468  }
469 
480  private void appendAttributeString(StringBuilder sb, BlackboardAttribute.ATTRIBUTE_TYPE attribType,
481  Map<BlackboardAttribute.ATTRIBUTE_TYPE, BlackboardAttribute> attributesMap, String prependStr) {
482 
483  BlackboardAttribute attribute = attributesMap.get(attribType);
484  if (attribute != null) {
485  String attrVal = attribute.getDisplayString();
486  if (!StringUtils.isEmpty(attrVal)) {
487  if (!StringUtils.isEmpty(prependStr)) {
488  sb.append(prependStr).append(' ');
489  }
490  sb.append(StringUtils.abbreviate(attrVal, ATTRIBUTE_STR_MAX_LEN)).append(' ');
491  }
492  }
493  }
494 
505  private Map<BlackboardAttribute.ATTRIBUTE_TYPE, BlackboardAttribute> getAttributesMap(BlackboardArtifact artifact) throws TskCoreException {
506  Map<BlackboardAttribute.ATTRIBUTE_TYPE, BlackboardAttribute> attributeMap = new HashMap<>();
507 
508  List<BlackboardAttribute> attributeList = artifact.getAttributes();
509  for (BlackboardAttribute attribute : attributeList) {
510  BlackboardAttribute.ATTRIBUTE_TYPE type = BlackboardAttribute.ATTRIBUTE_TYPE.fromID(attribute.getAttributeType().getTypeID());
511  attributeMap.put(type, attribute);
512  }
513 
514  return attributeMap;
515  }
516 
517  interface DateTimePanel {
523  Long getDateTime();
524  }
525 
535  private Long getArtifactDateTime(BlackboardArtifact artifact) throws TskCoreException {
536  BlackboardAttribute attribute = artifact.getAttribute(new BlackboardAttribute.Type(BlackboardAttribute.ATTRIBUTE_TYPE.TSK_DATETIME));
537 
538  if (BlackboardArtifact.ARTIFACT_TYPE.TSK_EMAIL_MSG.getTypeID() == artifact.getArtifactTypeID()) {
539  attribute = artifact.getAttribute(new BlackboardAttribute.Type(BlackboardAttribute.ATTRIBUTE_TYPE.TSK_DATETIME_SENT));
540  } else if (BlackboardArtifact.ARTIFACT_TYPE.TSK_WEB_DOWNLOAD.getTypeID() == artifact.getArtifactTypeID()
541  || BlackboardArtifact.ARTIFACT_TYPE.TSK_WEB_CACHE.getTypeID() == artifact.getArtifactTypeID()) {
542  attribute = artifact.getAttribute(new BlackboardAttribute.Type(BlackboardAttribute.ATTRIBUTE_TYPE.TSK_DATETIME_CREATED));
543  }
544  return (attribute != null ? attribute.getValueLong() : null);
545  }
546 
550  class SortByDateTime implements Comparator<DateTimePanel> {
551 
552  @Override
553  public int compare(DateTimePanel panel1, DateTimePanel panel2) {
554  Long dateTime1 = panel1.getDateTime();
555  Long dateTime2 = panel2.getDateTime();
556 
557  if(dateTime1 == null && dateTime2 == null) {
558  return 0;
559  } else if(dateTime1 == null) {
560  return -1;
561  } else if(dateTime2 == null) {
562  return 1;
563  }
564 
565  return dateTime1.compareTo(dateTime2);
566  }
567 
568  }
569 
570 
571  // Variables declaration - do not modify//GEN-BEGIN:variables
572  private javax.swing.JScrollPane jScrollPane;
573  private javax.swing.JPanel jSourcePanel;
574  private javax.swing.JPanel jUnknownPanel;
575  private javax.swing.JPanel jUsagePanel;
576  // End of variables declaration//GEN-END:variables
577 }
Map< BlackboardAttribute.ATTRIBUTE_TYPE, BlackboardAttribute > getAttributesMap(BlackboardArtifact artifact)
void appendAttributeString(StringBuilder sb, BlackboardAttribute.ATTRIBUTE_TYPE attribType, Map< BlackboardAttribute.ATTRIBUTE_TYPE, BlackboardAttribute > attributesMap, String prependStr)
void addArtifactToPanels(BlackboardArtifact associatedArtifact)
synchronized static Logger getLogger(String name)
Definition: Logger.java:124
String msgArtifactToAbbreviatedString(BlackboardArtifact artifact)

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