It is possible, albeit tricky. Here are the gory details:
If you only think as GWT as a straight Java to JS, it would not work. However, if you consider Generators - Special classes with your GWT compiler Compiles and Executes during compilation, it is possible. Thus, you can generate java source while even compiling.
I had this need today - Our system deals with Dynamic resources off a Service, ending into a String and a need for a class. Here is the solutuion I've came up with - btw, it works under hosted, IE and Firefox.
- Create a GWT Module declaring:
- A source path
- A Generator (which should be kept OUTSIDE the package of the GWT Module source path)
- An interface replacement (it will inject the Generated class instead of the interface)
- Inside that package, create a Marker interface (i call that Constructable). The Generator will lookup for that Marker
- Create a base abstract class to hold that factory. I do this in order to ease on the generated source code
- Declare that module inheriting on your Application.gwt.xml
Some notes:
- Key to understanding is around the concept of generators;
- In order to ease, the Abstract base class came in handy.
- Also, understand that there is name mandling into the generated .js source and even the generated Java source
- Remember the Generator outputs java files
- GWT.create needs some reference to the .class file. Your generator output might do that, as long as it is referenced somehow from your application (check Application.gwt.xml inherits your module, which also replaces an interface with the generator your Application.gwt.xml declares)
- Wrap the GWT.create call inside a factory method/singleton, and also under GWT.isClient()
- It is a very good idea to also wrap your code-class-loading-calls around a GWT.runAsync, as it might need to trigger a module load. This is VERY important.
I hope to post the source code soon. Cross your fingers. :)