Example usage for com.google.gwt.dom.client NodeRemote hashCode

List of usage examples for com.google.gwt.dom.client NodeRemote hashCode

Introduction

In this page you can find the example usage for com.google.gwt.dom.client NodeRemote hashCode.

Prototype

@Override
public final int hashCode() 

Source Link

Document

Uses a monotonically increasing counter to assign a hash code to the underlying JavaScript object.

Usage

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
}