Re: Generics inside method signatues of domain classes used by RequestFactory?

2011-12-19 Thread Elhanan Maayan
ok, when does one find such information, i mean, clearly these kind of things, even SkipInterfaceValidation do not appear on the developer guide, is there a secret cabal of gwt-isters, gathering somewhere in the ether? On Tue, Dec 13, 2011 at 11:39 AM, Thomas Broyer t.bro...@gmail.com wrote: A

Re: Generics inside method signatues of domain classes used by RequestFactory?

2011-12-19 Thread Thomas Broyer
Reading the code is the best source of information (and my only source of information) -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Re: Generics inside method signatues of domain classes used by RequestFactory?

2011-12-13 Thread Thomas Broyer
A DeobfuscatorBuilder must be named the same as your RequestFactory (including same package) suffixed with DeobfuscatorBuilder, and extend com.google.web.bindery.requestfactory.vm.impl.Deobfuscator.Builder. The ones generated by the ValidationTool/annotation processor initialize themselves in

Generics inside method signatues of domain classes used by RequestFactory?

2011-12-12 Thread Elhanan
hi.. assume i have the following domain classes; region which has a set of Country which has a set of Location while although each one has different set of properties, all implement a common interface of NodeT extends Serializable { Public T getId(); // Region has long id, while Country

Re: Generics inside method signatues of domain classes used by RequestFactory?

2011-12-12 Thread Thomas Broyer
If you're really sure about what you're doing, you can annotate the property with @SkipInterfaceValidation; and if you need to generate the DeobfuscatorBuilder yourself, possibly throwing in a ServiceLayerDecorator to help a bit. That's what I'm doing right now, because of some customizations

Re: Generics inside method signatues of domain classes used by RequestFactory?

2011-12-12 Thread Elhanan Maayan
do you have any examples on DeobfuscatorBuilder and ServiceLayerDecorator ? On Tue, Dec 13, 2011 at 12:58 AM, Thomas Broyer t.bro...@gmail.com wrote: If you're really sure about what you're doing, you can annotate the property with @SkipInterfaceValidation; and if you need to generate the