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 void
clearAll()
void
clearValue(Address start, Address end)
void
clearValue(AddressSetView addresses)
AddressSet
getAddressSet()
AddressSet
getAddressSet(int value)
java.lang.Integer
getValue(Address address)
void
moveAddressRange(Address fromAddr, Address toAddr, long length, TaskMonitor monitor)
void
setValue(Address start, Address end, int value)
void
setValue(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
-
-