Autopsy  4.17.0
Graphical digital forensics platform for The Sleuth Kit and other tools.
ContentViewerDetailsPanel.java
Go to the documentation of this file.
1 /*
2  * Autopsy
3  *
4  * Copyright 2020 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.discovery.ui;
20 
21 import org.openide.nodes.Node;
25 import org.sleuthkit.datamodel.BlackboardArtifact;
26 
30 final class ContentViewerDetailsPanel extends AbstractArtifactDetailsPanel {
31 
32  private static final long serialVersionUID = 1L;
33  private final DataContentPanel contentViewer = DataContentPanel.createInstance();
34 
38  @ThreadConfined(type = ThreadConfined.ThreadType.AWT)
39  ContentViewerDetailsPanel() {
40  initComponents();
41  add(contentViewer);
42  }
43 
49  @SuppressWarnings("unchecked")
50  // <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
51  private void initComponents() {
52 
53  setPreferredSize(new java.awt.Dimension(300, 0));
54  setLayout(new java.awt.BorderLayout());
55  }// </editor-fold>//GEN-END:initComponents
56 
57  @ThreadConfined(type = ThreadConfined.ThreadType.AWT)
58  @Override
59  public void setArtifact(BlackboardArtifact artifact) {
60  Node node = Node.EMPTY;
61  if (artifact != null) {
62  boolean useAssociatedFile = artifact.getArtifactTypeID() == BlackboardArtifact.ARTIFACT_TYPE.TSK_WEB_DOWNLOAD.getTypeID()
63  || artifact.getArtifactTypeID() == BlackboardArtifact.ARTIFACT_TYPE.TSK_WEB_CACHE.getTypeID();
64  node = new BlackboardArtifactNode(artifact, useAssociatedFile);
65  }
66  contentViewer.setNode(node);
67  }
68 
69 
70  // Variables declaration - do not modify//GEN-BEGIN:variables
71  // End of variables declaration//GEN-END:variables
72 }

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