@FunctionalInterface
public static interface FXUtils.Handler<T>
if ( condition() ) {
action();
}
postAction();
.| Modifier and Type | Method and Description |
|---|---|
void |
action(T c)
The action you want to perform on this Node.
|
default boolean |
condition(T c)
If true, it will call
action(Object) on this Node. |
default void |
postAction(T c)
The action you want to perform to any Nodes.
|
default boolean condition(T c)
action(Object) on this Node.c - the Nodevoid action(T c)
condition(Object)
returns true.c - the Nodedefault void postAction(T c)
c - the Node.