Package ghidra.framework.model
Interface ProjectViewListener
- All Known Implementing Classes:
FrontEndPlugin
public interface ProjectViewListener
ProjectViewListener
provides a listener interface for tracking project views added
and removed from the associated project.
NOTE: notification callbacks are not guarenteed to occur within the swing thread.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
viewedProjectAdded
(URL projectView) Provides notification that a read-only viewed project has been added which is intended to be visible.void
viewedProjectRemoved
(URL projectView) Provides notification that a viewed project is being removed from the project.
-
Method Details
-
viewedProjectAdded
Provides notification that a read-only viewed project has been added which is intended to be visible. Notification for hidden viewed projects will not be provided.- Parameters:
projectView
- project view URL
-
viewedProjectRemoved
Provides notification that a viewed project is being removed from the project. Notification for hidden viewed project removal will not be provided.- Parameters:
projectView
- project view URL
-