Package ghidra.util.prop
Class VoidPropertySet
- java.lang.Object
-
- ghidra.util.prop.PropertySet
-
- ghidra.util.prop.VoidPropertySet
-
- All Implemented Interfaces:
java.io.Serializable
public class VoidPropertySet extends PropertySet
Handles general storage and retrieval of a void property indexed by long keys. Void propertys have no value - they either exist or they don't exist.- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class ghidra.util.prop.PropertySet
noValueException, numProperties, pageSize, propertyPageIndex
-
-
Constructor Summary
Constructors Constructor Description VoidPropertySet(java.lang.String name)
Constructor for VoidPropertySet.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
applyValue(PropertyVisitor visitor, long addr)
Based upon the type of property manager that this is, the appropriate visit() method will be called within the PropertyVisitor.int
getDataSize()
Returns the size (in bytes) of the data that is stored in this property set.protected void
moveIndex(long from, long to)
void
put(long index)
Stores the existence of a property at the given index.protected void
restoreProperty(java.io.ObjectInputStream ois, long index)
restores the property from the input stream to the given index.protected void
saveProperty(java.io.ObjectOutputStream oos, long index)
saves the property at the given index to the given output stream.-
Methods inherited from class ghidra.util.prop.PropertySet
getFirstPropertyIndex, getIndex, getLastPropertyIndex, getName, getNextPropertyIndex, getObjectClass, getOrCreatePage, getPage, getPageID, getPageOffset, getPreviousPropertyIndex, getPropertyIterator, getPropertyIterator, getPropertyIterator, getPropertyIterator, getPropertyIterator, getSize, hasProperty, intersects, moveRange, remove, removeRange, restoreProperties, saveProperties
-
-
-
-
Method Detail
-
getDataSize
public int getDataSize()
Description copied from class:PropertySet
Returns the size (in bytes) of the data that is stored in this property set.- Specified by:
getDataSize
in classPropertySet
- Returns:
- the size (in bytes) of the data that is stored in this property set.
- See Also:
PropertySet.getDataSize()
-
put
public void put(long index)
Stores the existence of a property at the given index.- Parameters:
index
- the index at which to establish the existence of the property.
-
moveIndex
protected void moveIndex(long from, long to)
- Specified by:
moveIndex
in classPropertySet
-
saveProperty
protected void saveProperty(java.io.ObjectOutputStream oos, long index) throws java.io.IOException
saves the property at the given index to the given output stream.- Specified by:
saveProperty
in classPropertySet
- Throws:
java.io.IOException
-
restoreProperty
protected void restoreProperty(java.io.ObjectInputStream ois, long index) throws java.io.IOException, java.lang.ClassNotFoundException
restores the property from the input stream to the given index.- Specified by:
restoreProperty
in classPropertySet
- Throws:
java.io.IOException
java.lang.ClassNotFoundException
-
applyValue
public void applyValue(PropertyVisitor visitor, long addr)
Description copied from class:PropertySet
Based upon the type of property manager that this is, the appropriate visit() method will be called within the PropertyVisitor.- Specified by:
applyValue
in classPropertySet
- Parameters:
visitor
- object implementing the PropertyVisitor interface.addr
- the address of where to visit (get) the property.- See Also:
PropertySet.applyValue(PropertyVisitor, long)
-
-