List of usage examples for com.google.gwt.dom.client NodeRemote getParentNodeRemote
public final native NodeRemote getParentNodeRemote() ;
From source file:cc.alcina.framework.gwt.client.util.ClientUtils.java
License:Apache License
public static void dumpElementTree(Element elt) { NodeRemote jso = elt.implAccess().ensureRemote(); while (jso != null) { System.out.println(Ax.format("dump - %s - %s", jso.hashCode(), jso)); jso = jso.getParentNodeRemote(); }// ww w. ja va 2s.c o m }