Package ghidra.program.model.listing
Interface FunctionTagChangeSet
- All Superinterfaces:
ChangeSet
- All Known Subinterfaces:
ProgramChangeSet
Defines a Function Tag Change set. This is meant to track changes that
are made to
FunctionTag objects in a program.-
Method Summary
Modifier and TypeMethodDescriptionlong[]Returns a list of all tag ids that have been changed (edited/deleted).long[]Returns a list of all tag ids that have been created.voidtagChanged(long id) Indicates that a tag has been changed (edited/deleted).voidtagCreated(long id) Indicates that a tag has been created.
-
Method Details
-
tagChanged
void tagChanged(long id) Indicates that a tag has been changed (edited/deleted).- Parameters:
id- the id of the tag (fromFunctionTagAdapter)
-
tagCreated
void tagCreated(long id) Indicates that a tag has been created.- Parameters:
id- id the id of the tag (fromFunctionTagAdapter)
-
getTagChanges
long[] getTagChanges()Returns a list of all tag ids that have been changed (edited/deleted).- Returns:
- the list of tag ids (from
FunctionTagAdapter)
-
getTagCreations
long[] getTagCreations()Returns a list of all tag ids that have been created.- Returns:
- the list of tag ids (from
FunctionTagAdapter)
-