Friday, January 17, 2014

Re: seedTable error in web mode?

I think (I never looked into details) a seed represents a Java class but only stores super seed/class information and a map which defines to which types this class/seed can be cast. So its basically the very basic Java class information which GWT uses to construct your real class with all its methods and properties later. In case of code splitting a seed can also just act as a placeholder. 

Maybe such a placeholder seed is not fully initialized after a split point is downloaded.

In your screenshot you can see the seed id 1297. I think you should be able to figure out which class that represents by searching your JS files. You should find a defineSeed(1297, ...) method call somewhere and once you found it take a look through the JS code above and below to get the idea what GWT tries to define a seed for.

-- J.

--
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/groups/opt_out.

No comments:

Post a Comment