You missed the key organizational part of GWT: modules (in the form of gwt.xml files). The module is what you give to the GWT compiler, and what's used to determine the name of the JS "entry point" file being generated (the *.nocache.js file). The HTML page simply loads that script; and a GWT module defines an entry-point class that's called when the module is loaded.
If you want distinct HTML pages using distinct EntryPoint classes, then use distinct GWT modules. -- 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/-/ci6CIRwMnfUJ. 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.
