List of usage examples for com.google.gwt.widgetideas.client.overrides DOMHelper clone
public static native Element clone(Element elem, boolean deep) ;
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;
}