Hello all,
I have a scenario which I'm having some headaches to implement in RequestFactory. Thomas Broyer was kindly helping me, and suggested the use of the ExtraTypes annotation, but I can't find examples or much documentation on it. There are
these few words on the page about RequestFactory, but they did not help me...
First, let me quickly describe my scenario. In my server side, I have a class Revision<T extends AuditedEntity>. So, in a particular use case, I want to load in GWT proxies to Revision<EntityA>.
I was told to create a proxy RevisionProxy, which do not use generics, and for each particular use case create a sub-inteface of such proxy like EntityARevisionProxy. And then link it all together with @ExtraTypes.
Well... can someone show me an example or point me to some doc of how precisely should I do this?
Thank you