mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-16 17:57:43 +00:00
18 lines
433 B
Java
18 lines
433 B
Java
/*
|
|
* To change this template, choose Tools | Templates
|
|
* and open the template in the editor.
|
|
*/
|
|
package org.sleuthkit.autopsy.datamodel;
|
|
|
|
/**
|
|
* An object that has an associated string. These objects will be looked up by
|
|
* a strings viewer to show the associated string.
|
|
* @author alawrence
|
|
*/
|
|
public interface StringContent {
|
|
/*
|
|
* Get the string associated with this object
|
|
*/
|
|
public String getString();
|
|
}
|