Package ghidra.framework.model
Interface ProjectListener
- All Known Implementing Classes:
CheckoutsDialog
,DomainFolderChangesDisplayPlugin
,FileSystemBrowserPlugin
,ImporterPlugin
,VersionHistoryDialog
public interface ProjectListener
Listener that is notified when a project is opened, closed.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
projectClosed
(Project project) Notification that the given project is closed.void
projectOpened
(Project project) Notification that the given project is open.
-
Method Details
-
projectOpened
Notification that the given project is open.- Parameters:
project
- project that is opened
-
projectClosed
Notification that the given project is closed.- Parameters:
project
- project that is closed
-