public abstract class AsyncTreeModelAdapter<E extends AsyncUniqueNode> extends java.lang.Object implements AsyncTreeModelListener<E>
| Constructor and Description |
|---|
AsyncTreeModelAdapter() |
| 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.
|
public void childsLoadStarted(E parent)
childsLoadStarted in interface AsyncTreeModelListener<E extends AsyncUniqueNode>parent - node which childs are being loadedpublic void childsLoadCompleted(E parent, java.util.List<E> childs)
childsLoadCompleted in interface AsyncTreeModelListener<E extends AsyncUniqueNode>parent - node which childs were loadedchilds - loaded child nodespublic void childsLoadFailed(E parent, java.lang.Throwable cause)
childsLoadFailed in interface AsyncTreeModelListener<E extends AsyncUniqueNode>parent - node which childs were loadedcause - childs load failure cause