Package ghidra.program.model.listing
Interface FunctionTag
-
- All Superinterfaces:
java.lang.Comparable<FunctionTag>
- All Known Implementing Classes:
FunctionTagDB
public interface FunctionTag extends java.lang.Comparable<FunctionTag>
Represents a function tag object that can be associated with functions. This maps to theFunctionTagAdaptertable.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddelete()Deletes this tag from the programjava.lang.StringgetComment()Returns the tag commentlonggetId()Returns the id of the itemjava.lang.StringgetName()Returns the tag namevoidsetComment(java.lang.String comment)Sets the comment for this tagvoidsetName(java.lang.String name)Sets the name of the tag
-
-
-
Method Detail
-
getId
long getId()
Returns the id of the item- Returns:
- the id of the item
-
getName
java.lang.String getName()
Returns the tag name- Returns:
- the tag name
-
getComment
java.lang.String getComment()
Returns the tag comment- Returns:
- the tag comment
-
setName
void setName(java.lang.String name)
Sets the name of the tag- Parameters:
name- the tag name
-
setComment
void setComment(java.lang.String comment)
Sets the comment for this tag- Parameters:
comment- the tag comment
-
delete
void delete()
Deletes this tag from the program
-
-