Ruben Leal
unread,Dec 26, 2010, 8:02:45 AM12/26/10Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Google Web Toolkit
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