Re: Accessing class annotations on client side ?

2010-10-01 Thread Thomas Broyer
On Oct 1, 8:28 am, Didier DURAND wrote: > Hi there, > > the GWT compiler will not complain on annotations. But, I would like > to check them on client side in Javascript. > > On server side, I usually use getAnnotations() from Class.  But > current JRE emulation by GWT does not provide getAnnota

Re: Accessing class annotations on client side ?

2010-10-01 Thread Didier DURAND
Hi Y2i, Thanks for this pointer: I'll check it. regards didier On Oct 1, 8:42 am, Y2i wrote: > There is a projecthttp://gwtreflection.sourceforge.net/that attempts > to provide reflection on the client side, but it only seems to support > Java 1.4 reflection API which does not have annotations.

Re: Accessing class annotations on client side ?

2010-09-30 Thread Y2i
There is a project http://gwtreflection.sourceforge.net/ that attempts to provide reflection on the client side, but it only seems to support Java 1.4 reflection API which does not have annotations. On Sep 30, 11:28 pm, Didier DURAND wrote: > Hi there, > > the GWT compiler will not complain on an

Accessing class annotations on client side ?

2010-09-30 Thread Didier DURAND
Hi there, the GWT compiler will not complain on annotations. But, I would like to check them on client side in Javascript. On server side, I usually use getAnnotations() from Class. But current JRE emulation by GWT does not provide getAnnotations() although it provide the Annotation class. So,