Interface IControlSelectionFilter

    • Method Detail

      • apply

        @NonNull
        org.apache.commons.lang3.tuple.Pair<Boolean,​Booleanapply​(IControl control)
        Determines if the control is matched by this filter. This method returns a Pair where the first member of the pair indicates if the control matches, and the second indicates if the match applies to child controls as well.
        Specified by:
        apply in interface Function<IControl,​org.apache.commons.lang3.tuple.Pair<Boolean,​Boolean>>
        Parameters:
        control - the control to check for a match
        Returns:
        a pair indicating the status of the match (true for a match or false otherwise), and if a match applies to child controls