I'm starting to build an application which will eventually transfer several types of objects between the client and the server. I started my development with one object "User." I got that working.
Next, I wanted to provide an object abstraction were I could implement common methods across my objects, so I created "AbstractMyObject" and changed "User" to extend that object. I'm using Eclipse as the IDE. Once I changed "User" to extend "AbstractMyObject", Eclipse flagged the RemoteService and suggested I change the definition of my async callback from passing the "User" object to passing the "AbstractMyObject." Is there a requirement that only the highest level object can be transferred? Is there a way to do this? What's the alternative? -- 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.
