示例#1
0
 /**
  * Calls the handler recursively on a Node.
  *
  * @param c Node
  * @param handler handler to be called
  * @param <T> the type of the Node.
  */
 public static <T> void setRecursively(final T c, final Handler<T> handler) {
   setRecursively0(c, handler);
   handler.postAction(c);
 }