Interface DockingToolActions

  • All Known Implementing Classes:
    ToolActions

    public interface DockingToolActions
    Represents the collection of actions registered with the tool, along with method for adding and removing actions.
    • Method Detail

      • addLocalAction

        void addLocalAction​(ComponentProvider provider,
                            DockingActionIf action)
        Adds the given action that enabled when the given provider is active
        Parameters:
        provider - the provider
        action - the action
      • getLocalAction

        DockingActionIf getLocalAction​(ComponentProvider provider,
                                       java.lang.String actionName)
        Gets the provider action by the given name
        Parameters:
        provider - the provider
        actionName - the action name
        Returns:
        the action
      • removeLocalAction

        void removeLocalAction​(ComponentProvider provider,
                               DockingActionIf action)
        Removes the given provider's local action
        Parameters:
        provider - the provider
        action - the action
      • addGlobalAction

        void addGlobalAction​(DockingActionIf action)
        Adds the given action that is enabled, regardless of the active provider
        Parameters:
        action - the action
      • removeGlobalAction

        void removeGlobalAction​(DockingActionIf action)
        Removes the given global action
        Parameters:
        action - the action
      • removeActions

        void removeActions​(java.lang.String owner)
        Removes all global actions for the given owner
        Parameters:
        owner - the owner
      • removeActions

        void removeActions​(ComponentProvider provider)
        Removes all local actions for the given provider
        Parameters:
        provider - the provider
      • getActions

        java.util.Set<DockingActionIf> getActions​(java.lang.String owner)
        Returns all actions with the given owner
        Parameters:
        owner - the owner
        Returns:
        the actions
      • getAllActions

        java.util.Set<DockingActionIf> getAllActions()
        Returns all actions known to the tool
        Returns:
        the actions