JIDE 3.5.15

com.jidesoft.swing
Interface JideSwingUtilities.ConditionHandler

All Superinterfaces:
JideSwingUtilities.Handler
Enclosing class:
JideSwingUtilities

public static interface JideSwingUtilities.ConditionHandler
extends JideSwingUtilities.Handler

A simple handler used by setRecursively.

  if ( condition() ) {
      action();
  }
  postAction();
 
.


Method Summary
 boolean stopCondition(Component c)
          If this method returns true, the recursive call will stop at the component and will not call to its children.
 
Methods inherited from interface com.jidesoft.swing.JideSwingUtilities.Handler
action, condition, postAction
 

Method Detail

stopCondition

boolean stopCondition(Component c)
If this method returns true, the recursive call will stop at the component and will not call to its children.

Parameters:
c - the component
Returns:
true or false.

JIDE 3.5.15