Go to the documentation of this file.
19package org.sleuthkit.autopsy.discovery.ui;
22import org.sleuthkit.autopsy.coreutils.ImageUtils;
23import org.sleuthkit.autopsy.discovery.search.ResultFile;
29final class ImageThumbnailWrapper {
31 private Image thumbnail;
32 private final ResultFile resultFile;
40 ImageThumbnailWrapper(ResultFile file) {
41 this.thumbnail = ImageUtils.getDefaultThumbnail();
42 this.resultFile = file;
50 void setImageThumbnail(Image thumbnail) {
51 this.thumbnail = thumbnail;
61 ResultFile getResultFile() {
70 Image getThumbnail() {
Copyright © 2012-2024 Sleuth Kit Labs. Generated on:
This work is licensed under a
Creative Commons Attribution-Share Alike 3.0 United States License.