Package ghidra.program.model.util
Class DefaultIntPropertyMap
java.lang.Object
ghidra.program.model.util.DefaultPropertyMap<Integer>
ghidra.program.model.util.DefaultIntPropertyMap
- All Implemented Interfaces:
- IntPropertyMap,- PropertyMap<Integer>
Property manager that deals with properties that are of
 int type.
- 
Field SummaryFields inherited from class ghidra.program.model.util.DefaultPropertyMapaddrMap, description, propertyMgr
- 
Constructor SummaryConstructors
- 
Method SummaryMethods inherited from class ghidra.program.model.util.DefaultPropertyMapgetDescription, getFirstPropertyAddress, getLastPropertyAddress, getName, getNextPropertyAddress, getPreviousPropertyAddress, getPropertyIterator, getPropertyIterator, getPropertyIterator, getPropertyIterator, getPropertyIterator, getPropertyIterator, getSize, hasProperty, intersects, intersects, moveRange, remove, removeRange, restoreProperties, saveProperties, setDescriptionMethods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface ghidra.program.model.util.IntPropertyMapadd, getValueClassMethods inherited from interface ghidra.program.model.util.PropertyMapgetFirstPropertyAddress, getLastPropertyAddress, getName, getNextPropertyAddress, getPreviousPropertyAddress, getPropertyIterator, getPropertyIterator, getPropertyIterator, getPropertyIterator, getPropertyIterator, getPropertyIterator, getSize, hasProperty, intersects, intersects, moveRange, remove, removeRange
- 
Constructor Details- 
DefaultIntPropertyMapConstruct a new IntPropertyMap- Parameters:
- name- name of property
 
 
- 
- 
Method Details- 
addDescription copied from interface:IntPropertyMapAdd an int value at the specified address.- Specified by:
- addin interface- IntPropertyMap
- Parameters:
- addr- address for the property
- value- value of the property
 
- 
getIntDescription copied from interface:IntPropertyMapGet the integer value at the given address.- Specified by:
- getIntin interface- IntPropertyMap
- Parameters:
- addr- the address from where to get the int value
- Returns:
- integer property value
- Throws:
- NoValueException- if there is no property value at addr.
 
- 
getDescription copied from interface:PropertyMapReturns the property value stored at the specified address or null if no property found.- Specified by:
- getin interface- PropertyMap<Integer>
- Parameters:
- addr- property address
- Returns:
- property value
 
 
-