Is it possible to change the element's node name in GWT? I mean something like this:
HTML h = new HTML();
h.getElement().setNodeName("mydiv")
while there is no setNodeName()
method for Element
.
I'd like to acquire <mydiv>some contents</mydiv>
instead of default tag <div>some contents</div>
Thanks for any hints.