Package ghidra.framework.model
Class DomainFolderListenerAdapter
- java.lang.Object
-
- ghidra.framework.model.DomainFolderListenerAdapter
-
- All Implemented Interfaces:
DomainFolderChangeListener
public abstract class DomainFolderListenerAdapter extends java.lang.Object implements DomainFolderChangeListener
Adapter for the domain folder change listener.- See Also:
for details regarding listener use
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedDomainFolderListenerAdapter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddomainFileAdded(DomainFile file)Notification that a file is added to parent folder.voiddomainFileMoved(DomainFile file, DomainFolder oldParent, java.lang.String oldName)Notification that the domain file was moved.voiddomainFileObjectClosed(DomainFile file, DomainObject object)Notification that a domain file previously open for update is in the process of closing.voiddomainFileObjectOpenedForUpdate(DomainFile file, DomainObject object)Notification that a domain file has been opened for update.voiddomainFileObjectReplaced(DomainFile file, DomainObject oldObject)Notification that a new version of the domain object exists and the current one is no longer valid.voiddomainFileRemoved(DomainFolder parent, java.lang.String name, java.lang.String fileID)Notification that a file was removedvoiddomainFileRenamed(DomainFile file, java.lang.String oldName)Notification that the domain file was renamed.voiddomainFileStatusChanged(DomainFile file, boolean fileIDset)Notification that the status for a domain file has changed.voiddomainFolderAdded(DomainFolder folder)Notification that a folder is added to parent.voiddomainFolderMoved(DomainFolder folder, DomainFolder oldParent)Notification that the domain folder was moved.voiddomainFolderRemoved(DomainFolder parent, java.lang.String name)Notification that a domain folder is removed.voiddomainFolderRenamed(DomainFolder folder, java.lang.String oldName)Notify listeners when a domain folder is renamed.voiddomainFolderSetActive(DomainFolder folder)Notification that the setActive() method on the folder was called.voidstateChanged(java.lang.String affectedNewPath, java.lang.String affectedOldPath, boolean isFolder)Provides a consolidated callback for those listener methods which have not been overridden.
-
-
-
Method Detail
-
stateChanged
public void stateChanged(java.lang.String affectedNewPath, java.lang.String affectedOldPath, boolean isFolder)Provides a consolidated callback for those listener methods which have not been overridden. This callback is NOT invoked for the following callbacks:- domainFolderSetActive
- domainFileObjectReplaced
- domainFileObjectOpenedForUpdate
- domainFileObjectClosed
- Parameters:
affectedNewPath- new path of affected folder/file, or null if item was removed (see affectedOldPath)affectedOldPath- original path of affected folder/file, or null for new item (see affectedOldPath)isFolder- true if affected item is/was a folder
-
domainFolderAdded
public void domainFolderAdded(DomainFolder folder)
Description copied from interface:DomainFolderChangeListenerNotification that a folder is added to parent.- Specified by:
domainFolderAddedin interfaceDomainFolderChangeListener- Parameters:
folder- domain folder which was just added.
-
domainFileAdded
public void domainFileAdded(DomainFile file)
Description copied from interface:DomainFolderChangeListenerNotification that a file is added to parent folder. You can get the parent from the file.- Specified by:
domainFileAddedin interfaceDomainFolderChangeListener- Parameters:
file- domain file which was just added.
-
domainFolderRemoved
public void domainFolderRemoved(DomainFolder parent, java.lang.String name)
Description copied from interface:DomainFolderChangeListenerNotification that a domain folder is removed.- Specified by:
domainFolderRemovedin interfaceDomainFolderChangeListener- Parameters:
parent- domain folder which contained the folder that was just removed.name- the name of the folder that was removed.
-
domainFileRemoved
public void domainFileRemoved(DomainFolder parent, java.lang.String name, java.lang.String fileID)
Description copied from interface:DomainFolderChangeListenerNotification that a file was removed- Specified by:
domainFileRemovedin interfaceDomainFolderChangeListener- Parameters:
parent- domain folder which contained the file that was just removed.name- the name of the file that was removed.fileID- file ID or null
-
domainFolderRenamed
public void domainFolderRenamed(DomainFolder folder, java.lang.String oldName)
Description copied from interface:DomainFolderChangeListenerNotify listeners when a domain folder is renamed.- Specified by:
domainFolderRenamedin interfaceDomainFolderChangeListener- Parameters:
folder- folder that was renamedoldName- old name of folder
-
domainFileRenamed
public void domainFileRenamed(DomainFile file, java.lang.String oldName)
Description copied from interface:DomainFolderChangeListenerNotification that the domain file was renamed.- Specified by:
domainFileRenamedin interfaceDomainFolderChangeListener- Parameters:
file- file that was renamedoldName- old name of the file
-
domainFolderMoved
public void domainFolderMoved(DomainFolder folder, DomainFolder oldParent)
Description copied from interface:DomainFolderChangeListenerNotification that the domain folder was moved.- Specified by:
domainFolderMovedin interfaceDomainFolderChangeListener- Parameters:
folder- the folder (after move)oldParent- original parent folder
-
domainFileMoved
public void domainFileMoved(DomainFile file, DomainFolder oldParent, java.lang.String oldName)
Description copied from interface:DomainFolderChangeListenerNotification that the domain file was moved.- Specified by:
domainFileMovedin interfaceDomainFolderChangeListener- Parameters:
file- the file (after move)oldParent- original parent folder
-
domainFolderSetActive
public void domainFolderSetActive(DomainFolder folder)
Description copied from interface:DomainFolderChangeListenerNotification that the setActive() method on the folder was called.- Specified by:
domainFolderSetActivein interfaceDomainFolderChangeListener
-
domainFileStatusChanged
public void domainFileStatusChanged(DomainFile file, boolean fileIDset)
Description copied from interface:DomainFolderChangeListenerNotification that the status for a domain file has changed.- Specified by:
domainFileStatusChangedin interfaceDomainFolderChangeListener- Parameters:
file- file whose status has changed.fileIDset- if true indicates that the previously missing fileID has been established for the specified file.
-
domainFileObjectReplaced
public void domainFileObjectReplaced(DomainFile file, DomainObject oldObject)
Description copied from interface:DomainFolderChangeListenerNotification that a new version of the domain object exists and the current one is no longer valid. Existing consumers should be immediately released and no additional use of the oldObject is permitted once this method returns. This is only called for domain objects which were opened for update.- Specified by:
domainFileObjectReplacedin interfaceDomainFolderChangeListener- Parameters:
file- file whose object was replacedoldObject- old object that was replaced
-
domainFileObjectOpenedForUpdate
public void domainFileObjectOpenedForUpdate(DomainFile file, DomainObject object)
Description copied from interface:DomainFolderChangeListenerNotification that a domain file has been opened for update.- Specified by:
domainFileObjectOpenedForUpdatein interfaceDomainFolderChangeListener- Parameters:
file- domain fileobject- domain object open for update
-
domainFileObjectClosed
public void domainFileObjectClosed(DomainFile file, DomainObject object)
Description copied from interface:DomainFolderChangeListenerNotification that a domain file previously open for update is in the process of closing.- Specified by:
domainFileObjectClosedin interfaceDomainFolderChangeListener- Parameters:
file- domain fileobject- domain object which was open for update
-
-