I'm writing an GWT/GAE application with some server-persistent classes
inheritance. From server-side, my inheritance works well, but when I
try to connect my classes with my proxies via RequestFactory, I cannot
send data to inherited fields of some proxies. Example:
// Server side
class BaseClass
{
int field1;
}
class DerivedClass
{
int field2;
}
// client side
@ProxyFor(DerivedClass)
class DerivedClassProxy
{
void setField1(int a);
void setField2(int b);
}
In the example above, Client side code can setup field2 in server
side, but no "field1", inherited from BaseClass.
What is the best way to resolve this issue?
Regards,
Ruben Leal
--
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.