Package ghidra.program.model.util
Interface IntPropertyMap
-
- All Superinterfaces:
PropertyMap
- All Known Implementing Classes:
DefaultIntPropertyMap
,IntPropertyMapDB
public interface IntPropertyMap extends PropertyMap
Property manager that deals with properties that are of int type.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
add(Address addr, int value)
Add an int value at the specified address.int
getInt(Address addr)
Get the integer value at the given address.-
Methods inherited from interface ghidra.program.model.util.PropertyMap
applyValue, getFirstPropertyAddress, getLastPropertyAddress, getName, getNextPropertyAddress, getObject, getPreviousPropertyAddress, getPropertyIterator, getPropertyIterator, getPropertyIterator, getPropertyIterator, getPropertyIterator, getPropertyIterator, getSize, hasProperty, intersects, intersects, moveRange, remove, removeRange
-
-
-
-
Method Detail
-
add
void add(Address addr, int value)
Add an int value at the specified address.- Parameters:
addr
- address for the propertyvalue
- value of the property
-
getInt
int getInt(Address addr) throws NoValueException
Get the integer value at the given address.- Parameters:
addr
- the address from where to get the int value- Throws:
NoValueException
- if there is no property value at addr.
-
-