Lets say I have package : com.mycom.model It has following classes
com.mycom.model.PlatformMessage (an interface) com.mycom.model.AbstractMessage (an abstract class that implements PlatformMessage) com.mycom.model.QueryMessage (a concrete implementation of AbstractMessage) Now there is another package: com.mycom.app It has the following class... com.mycom.app.StreamMessage (a concrete implementation of AbstractMessage) ONLY com.mycom.model a GWT module. Now when I compile com.mycom.model, why does it need to go and look for all implementations of that abstract class AbstractMessage in OTHER packages (as I later find with many No Source found..." errors)? It seems RPC serializer is trying to serialize/compile all classes that IMPLEMENT an abstract class in my gwt module. Is there way to workaround this? -- 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.
