mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-12 07:56:16 +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() {
|
public TskData.TagType getTagType() {
|
||||||
return tagType;
|
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
|
* Compares this tag name definition with the specified tag name definition
|
||||||
|
Loading…
x
Reference in New Issue
Block a user