Interface DockingActionProviderIf

  • All Known Implementing Classes:
    FVTable, GhidraTable, GTable, VersionHistoryDialog

    public interface DockingActionProviderIf
    An interface for objects (really Components) to implement that signals they provide actions for the Docking environment. This interface will be called when the implementor is the source of a Java event, like a MouseEvent.

    As an example, a JTable that wishes to provide popup menu actions can implement this interface. When the user right-clicks on said table, then Docking system will ask this object for its actions. Further, in this example, the actions given will be inserted into the popup menu that is shown.

    • Method Detail

      • getDockingActions

        java.util.List<DockingActionIf> getDockingActions​(ActionContext context)
        Returns actions that are compatible with the given context.
        Parameters:
        context - the current context of the Docking system