how to display member variables,member functions etc..

Hi,Is it possible to load user defined class and display its full things such constructor methods, member variable , methods etc.. using ClassLoader or something?regards
[190 byte] By [Pannara] at [2007-11-27 9:06:57]
# 1
Yep. The class java.lang.Class has methods for describing these attributesNo, I won't tell you how to use them. If you're big and ugly enough to be doing this, you're presumably big and ugly enough to read and understand API documentation :-)
georgemca at 2007-7-12 21:43:04 > top of Java-index,Java Essentials,New To Java...
# 2
This is more than enough. Its availble in Great sun! http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Class.htmlThanks
Pannara at 2007-7-12 21:43:04 > top of Java-index,Java Essentials,New To Java...
# 3

> This is more than enough. Its availble in Great sun!

>

> http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Clas

> s.html

>

> Thanks

You're welcome. One tip I'll give you, that I recall the API docs as not being overly-clear about: pay attention to the difference between methods such as getMethods and getDeclaredMethods

georgemca at 2007-7-12 21:43:04 > top of Java-index,Java Essentials,New To Java...