So AutoBeans seem to be working now, however I'm still getting the 'xxx_classlit_xx not defined' exception when I try to use other gwt classes. For instance the following method:
-- public Clerk<D> setEvents(HasValue<?>... fields)
{
for (HasValue<?> f : fields)
{
f.addValueChangeHandler( e -> validate() );
}
return this;
}produces: com.google.gwt.core.client.JavaScriptException: (ReferenceError) : Lcom_google_gwt_user_client_ui_HasValue_2_classLit_0_g$ is not defined
I'm wondering if this is because of my use of lambdas / sourceLevel 1.8 and if I should've stuck to using 1.7.
Jen, in your project, are you using sourceLevel 1.7 or 1.8?
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.
No comments:
Post a Comment