mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-06 21:00:22 +00:00
Supporting legacy APIs
This commit is contained in:
parent
2c4b795a46
commit
c84579f49f
@ -178,6 +178,17 @@ final public class TagNameDefinition implements Comparable<TagNameDefinition> {
|
||||
public TskData.TagType getTagType() {
|
||||
return tagType;
|
||||
}
|
||||
|
||||
/**
|
||||
* The status which will be applied to items with this tag.
|
||||
*
|
||||
* @return a value of TskData.FileKnown which is associated with this tag
|
||||
* @deprecated getTagType() should be used instead.
|
||||
*/
|
||||
@Deprecated
|
||||
public TskData.FileKnown getKnownStatus() {
|
||||
return TskData.TagType.convertTagTypeToFileKnown(tagType);
|
||||
}
|
||||
|
||||
/**
|
||||
* Compares this tag name definition with the specified tag name definition
|
||||
|
Loading…
x
Reference in New Issue
Block a user