Interface JideSwingUtilities.Handler

    • Method Detail

      • condition

        boolean condition​(java.awt.Component c)
        If true, it will call action(java.awt.Component) on this component.
        Parameters:
        c - the component
        Returns:
        true or false.
      • action

        void action​(java.awt.Component c)
        The action you want to perform on this component. This method will only be called if condition(java.awt.Component) returns true.
        Parameters:
        c - the component
      • postAction

        void postAction​(java.awt.Component c)
        The action you want to perform to any components. If action(c) is called, this action is after it.
        Parameters:
        c - the component.