Package ghidra.program.model.listing
Interface AddressChangeSet
- All Superinterfaces:
ChangeSet
- All Known Subinterfaces:
ProgramChangeSet
Interface for an Address Change set. Objects that implements this interface track
various change information on a set of addresses where the program has changed.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
add
(AddressSetView addrSet) Adds the address set to the set addresses where changes occurred.void
Adds the range of addresses to the set addresses where changes occurred.Returns the address set of all addresses where the listing has changed.
-
Method Details
-
getAddressSet
AddressSetView getAddressSet()Returns the address set of all addresses where the listing has changed. -
add
Adds the address set to the set addresses where changes occurred.- Parameters:
addrSet
- the set of addresses to add as changes.
-
addRange
Adds the range of addresses to the set addresses where changes occurred.- Parameters:
addr1
- the first address in the rangeaddr2
- the last address in the range. (inclusive)
-