public interface AsyncTreeModelListener<E extends AsyncUniqueNode>
extends java.util.EventListener
| Modifier and Type | Method and Description |
|---|---|
void |
childsLoadCompleted(E parent,
java.util.List<E> childs)
Invoked when childs load operation finishes.
|
void |
childsLoadFailed(E parent,
java.lang.Throwable cause)
Invoked when childs load operation failed.
|
void |
childsLoadStarted(E parent)
Invoked when childs load operation starts.
|
void childsLoadStarted(E parent)
parent - node which childs are being loadedvoid childsLoadCompleted(E parent, java.util.List<E> childs)
parent - node which childs were loadedchilds - loaded child nodesvoid childsLoadFailed(E parent, java.lang.Throwable cause)
parent - node which childs were loadedcause - childs load failure cause