Go to the documentation of this file.
19package org.sleuthkit.autopsy.discovery.ui;
21import org.openide.util.NbBundle.Messages;
22import org.sleuthkit.autopsy.discovery.search.ResultFile;
23import org.sleuthkit.autopsy.textsummarizer.TextSummary;
29final class DocumentWrapper {
31 private TextSummary summary;
32 private final ResultFile resultFile;
40 @Messages({
"DocumentWrapper.previewInitialValue=Preview not generated yet."})
41 DocumentWrapper(ResultFile file) {
42 this.summary =
new TextSummary(Bundle.DocumentWrapper_previewInitialValue(),
null, 0);
43 this.resultFile = file;
53 void setSummary(TextSummary textSummary) {
54 this.summary = textSummary;
64 ResultFile getResultFile() {
73 TextSummary getSummary() {
Copyright © 2012-2024 Sleuth Kit Labs. Generated on:
This work is licensed under a
Creative Commons Attribution-Share Alike 3.0 United States License.