Autopsy 4.22.1
Graphical digital forensics platform for The Sleuth Kit and other tools.
LoadableLabel.java
Go to the documentation of this file.
1/*
2 * Autopsy Forensic Browser
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 */
19package org.sleuthkit.autopsy.datasourcesummary.uiutils;
20
21import java.awt.BorderLayout;
22import javax.swing.JLabel;
23import org.apache.commons.lang3.StringUtils;
24
29public class LoadableLabel extends AbstractLoadableComponent<String> {
30
31 private static final long serialVersionUID = 1L;
32
33 private final JLabel label = new JLabel();
34 private final String key;
35
41 public LoadableLabel(String key) {
42 this.key = key;
43 setLayout(new BorderLayout());
44 add(label, BorderLayout.CENTER);
45 this.showResults(null);
46 }
47
48 private void setValue(String value) {
49 String formattedKey = StringUtils.isBlank(key) ? "" : key;
50 String formattedValue = StringUtils.isBlank(value) ? "" : value;
51 label.setText(String.format("%s: %s", formattedKey, formattedValue));
52 }
53
54 @Override
55 protected void setMessage(boolean visible, String message) {
56 setValue(message);
57 }
58
59 @Override
60 protected void setResults(String data) {
61 setValue(data);
62 }
63}

Copyright © 2012-2024 Sleuth Kit Labs. Generated on:
This work is licensed under a Creative Commons Attribution-Share Alike 3.0 United States License.