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