I have a single ClientBundle with css resources that are needed throughout the application - default background colors, common layout patterns, etc.
A stated design goal from GWT is that there be "no penalty for having multiple ClientBundle resource functions refer to the same content." Do I have to do anything to avoid penalties and help ClientBundle realize this goal?
A naive approach would be to just add
<ui:with field="appWideResources"
type='com.activegrade.client.resources.appwide.AppWideResources' />
at the top of every UiBinder file. But, in my 22 jillion UiBinder files, will this create 22 jillion instances of AppWideResources, each with different and redundant obfuscations, etc?