JideSwingUtilities.ConditionHandler
public static interface JideSwingUtilities.Handler
if ( condition() ) { action(); } postAction();.
Modifier and Type | Method | Description |
---|---|---|
void |
action(Component c) |
The action you want to perform on this component.
|
boolean |
condition(Component c) |
If true, it will call
action(java.awt.Component) on this component. |
void |
postAction(Component c) |
The action you want to perform to any components.
|
boolean condition(Component c)
action(java.awt.Component)
on this component.c
- the componentvoid action(Component c)
condition(java.awt.Component)
returns true.c
- the componentvoid postAction(Component c)
c
- the component.