The answer to the following question shows this is possible:
Trying to get UIBinder to give me a span not a div
If you declare <g:HTMLPanel tag="span"> in the template, then the HTMLPanel will be a <span> element in the final result, instead of the default <div>.
The HTMLPanel has this constructor:
public HTMLPanel(String tag, String html)
which is probably called by this method, but how? If there is no tag attribute in the template, then the constructor used is probably this one:
public HTMLPanel(String html)
I understand that it is possible to annotate a Constructor with @UiConstructor to create a widget with parameters defined in the template, but how is it possible to change constructors depending on which attributes are defined?
And also, how is the String html filled automatically? Would there be some implicit definition of an html attribute as the content of the element? Or is this a nonstandard behavior of UIBinder just for HTMLPanel?