Package ghidra.program.database
Interface IntRangeMap
-
- All Known Implementing Classes:
IntRangeMapDB
public interface IntRangeMap
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidclearAll()voidclearValue(Address start, Address end)voidclearValue(AddressSetView addresses)AddressSetgetAddressSet()AddressSetgetAddressSet(int value)java.lang.IntegergetValue(Address address)voidmoveAddressRange(Address fromAddr, Address toAddr, long length, TaskMonitor monitor)voidsetValue(Address start, Address end, int value)voidsetValue(AddressSetView addresses, int value)
-
-
-
Method Detail
-
setValue
void setValue(AddressSetView addresses, int value)
-
getValue
java.lang.Integer getValue(Address address)
-
getAddressSet
AddressSet getAddressSet()
-
getAddressSet
AddressSet getAddressSet(int value)
-
clearValue
void clearValue(AddressSetView addresses)
-
clearAll
void clearAll()
-
moveAddressRange
void moveAddressRange(Address fromAddr, Address toAddr, long length, TaskMonitor monitor) throws CancelledException
- Throws:
CancelledException
-
-