Can someone post an example of the shortest way of sharing a (preferably static final) string or number constant between Java code and UiBinder XML, where I can use the constant either in an attribute:
<g:TextArea width="...px"/>
or in a value:
<g:Label>...</g:Label>
I can't seem to find an example of this, only text from a file, which I don't want.