AFAICT, UiBinder in GWT 2.4 generates a SafeHtmlTemplates (instead of 
building an HTML string by appending to a StringBuilder, as was done in 
previous versions). This means that everywhere you have a "replaceable" 
part (e.g. {foo} in an attribute, or a widget or <ui:msg>) it will generate 
a placeholder in the @Template and an argument to the template method. It 
seems like you have more than 255 such "replaceable part".

Maybe you could pass -gen to the Compiler and look at the generated code? 
It might be worth filing a bug, attaching your UiBinder template (or any 
template that would reproduce the issue).

As a workaround, you can throw an HTMLPanel in place of a few HTML 
elements, to reduce the size of the template (if I correctly guessed, that 
would split the template in several small templates, one for each HTMLPanel)

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/UjcY7Wad6WkJ.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to