Lets say I have a class

com.mycom.app.AbstractMessage

There is another class in

com.mycom.model.QueryResponse

QueryResponse extends AbstractMessage and notice they are in different
pacakges

com.mycom.model is a GWT Module and in the module XML

When I compile model there are errors. However when I try to use
QueryReponse in another GWT module, I get runtime errors

"No source code is available for type com.mycom.app.AbstractMessage;
did you forget to inherit a required module"

This lends me to believe that AbstractMessage was not compiled/
compiled right to begin understandably because I DO NOT WANT to have
"app" package be a GWT module

In other words, I only want to compile all classes in "model" and not
any super classes. How can I tell the GWT compiler/rpc/linker/
serializer etc not to do so?

I am doing this a source environment where we have a lot of packages,
most of them depend on MODEL only and I DO NOT want to make a GWT
module out of every package, just so it compiles.

Thought anyone?

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
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