Getting all information about a method

Is it possible to get all the information about a mathod using methoddoc or some other class, i.e.

publicvoid method1 (int param1, String param2, ...)

{

blah blah blah

}

I'd get back

publicvoid method1 (int param1, String param2, ...)

I'm using methoddoc.flatsignature() but this returns:

(int, String)

I need to include the variables.

Message was edited by:

Rebels_Mascot

[701 byte] By [Rebels_Mascota] at [2007-10-2 19:17:32]
# 1
You should iterate by Parameter objects provided by ExecutableMemberDoc.parameters() method and, then, build each your method heading by yourself.Regards,Leonid Rudy http://www.docflex.com
leonid_rudya at 2007-7-13 20:59:55 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...
# 2
Thanks Leonid, I got that working now.
Rebels_Mascota at 2007-7-13 20:59:55 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...