Package ghidra.framework.data
Interface DomainObjectFileListener
public interface DomainObjectFileListener
Listener for when the
DomainFile
associated with a DomainObject
changes, such
as when a 'Save As' action occurs. Unlike DomainObject events, these callbacks are not buffered
and happen immediately when the DomainFile is changed.-
Method Summary
Modifier and TypeMethodDescriptionvoid
domainFileChanged
(DomainObject domainObject) Notification that the DomainFile for the given DomainObject has changed
-
Method Details
-
domainFileChanged
Notification that the DomainFile for the given DomainObject has changed- Parameters:
domainObject
- the DomainObject whose DomainFile changed
-