List of usage examples for com.google.gwt.dom.client NodeRemote hashCode
@Override public final int hashCode()
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(); }//from w w w .jav a 2 s . c o m }