Example usage for com.google.gwt.widgetideas.client.overrides DOMHelper rawFirstChild

List of usage examples for com.google.gwt.widgetideas.client.overrides DOMHelper rawFirstChild

Introduction

In this page you can find the example usage for com.google.gwt.widgetideas.client.overrides DOMHelper rawFirstChild.

Prototype

public static native Element rawFirstChild(Element elem) ;

Source Link

Document

Gets the first child.

Usage

From source file:com.tensegrity.wpalo.client.ui.mvc.fasttree.FastMSTreeItem.java

License:Apache License

Element createLeafElement() {
    Element elem = DOMHelper.clone(TREE_LEAF, true);
    contentElem = DOMHelper.rawFirstChild(elem);
    return elem;
}