Package ghidra.program.util
Class DataTypeArchiveChangeRecord
- java.lang.Object
 - 
- ghidra.framework.model.DomainObjectChangeRecord
 - 
- ghidra.program.util.DataTypeArchiveChangeRecord
 
 
 
- 
- All Implemented Interfaces:
 java.io.Serializable
public class DataTypeArchiveChangeRecord extends DomainObjectChangeRecord
Event data for a DomainObjectChangeEvent generated by a Data Type Archive.See Data Type Archive Events for more information on event data.
- See Also:
 - Serialized Form
 
 
- 
- 
Constructor Summary
Constructors Constructor Description DataTypeArchiveChangeRecord(int type, java.lang.Object affectedObj, java.lang.Object oldValue, java.lang.Object newValue)Construct a new DataTypeArchiveChangeRecord; theaffectedObjparameter may be null, depending on what thetypeparameter is. 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.ObjectgetObject()Return the object that is the subject of this change record.- 
Methods inherited from class ghidra.framework.model.DomainObjectChangeRecord
getEventType, getNewValue, getOldValue, getSubEventType, toString 
 - 
 
 - 
 
- 
- 
Constructor Detail
- 
DataTypeArchiveChangeRecord
public DataTypeArchiveChangeRecord(int type, java.lang.Object affectedObj, java.lang.Object oldValue, java.lang.Object newValue)Construct a new DataTypeArchiveChangeRecord; theaffectedObjparameter may be null, depending on what thetypeparameter is.- Parameters:
 type- event typeaffectedObj- the object affected by the changeoldValue- original valuenewValue- new value
 
 - 
 
 -