Package ghidra.program.model.listing
Interface AddressChangeSet
-
- All Superinterfaces:
ChangeSet
- All Known Subinterfaces:
ProgramChangeSet
public interface AddressChangeSet extends ChangeSet
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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidadd(AddressSetView addrSet)Adds the address set to the set addresses where changes occurred.voidaddRange(Address addr1, Address addr2)Adds the range of addresses to the set addresses where changes occurred.AddressSetViewgetAddressSet()Returns the address set of all addresses where the listing has changed.
-
-
-
Method Detail
-
getAddressSet
AddressSetView getAddressSet()
Returns the address set of all addresses where the listing has changed.
-
add
void add(AddressSetView addrSet)
Adds the address set to the set addresses where changes occurred.- Parameters:
addrSet- the set of addresses to add as changes.
-
-