Package ghidra.framework.model
Interface DomainObjectListener
-
- All Superinterfaces:
java.util.EventListener
- All Known Implementing Classes:
DataTypeArchiveMergeManagerPlugin
,DomainEventDisplayPlugin
,MergeManagerPlugin
,ProgramBigListingModel
,ProgramMergeManagerPlugin
,PropertyBasedBackgroundColorModel
,PropertyManagerPlugin
public interface DomainObjectListener extends java.util.EventListener
The interface an object must support to be registered with a Domain Object and thus be informed of changes to the object. NOTE: The DomainObjectChangeEvent is TRANSIENT: it is only valid during the life of calls to all the DomainObjectChangeListeners.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
domainObjectChanged(DomainObjectChangedEvent ev)
Method called when a change is made to the domain object.
-
-
-
Method Detail
-
domainObjectChanged
void domainObjectChanged(DomainObjectChangedEvent ev)
Method called when a change is made to the domain object.- Parameters:
ev
- event containing the change record and type of change that was made
-
-