hi guys
can any one give me a hint or idea how can we find out the properties
of a class without using reflection api
paul@atom.sbrk.co.uk - 08 Feb 2006 07:09 GMT
> can any one give me a hint or idea how can we find out the properties
> of a class without using reflection api
Serialise an instance of the object and run strings on it? Generate a
script check likely methods and fields and catch Error to see if they
exist/have the appropriate signature?
Paul
Roedy Green - 08 Feb 2006 07:41 GMT
>hi guys
>can any one give me a hint or idea how can we find out the properties
>of a class without using reflection api
the other way is to snoop on the class file. This is what JarCheck
does in a very primitive way to make sure the version numbers are as
you expected.
See http://mindprod.com/products1.html#JARLOOK
and http://mindprod.com/jgloss/jasm.html

Signature
Canadian Mind Products, Roedy Green.
http://mindprod.com Java custom programming, consulting and coaching.
EJP - 08 Feb 2006 23:40 GMT
> hi guys
> can any one give me a hint or idea how can we find out the properties
> of a class without using reflection api
java.beans.Introspector. Of course that uses reflection internally.