I am using Asm to visit the java byte code to get the method infomation.It seems that accept method of class ClassReader is called in a asynchronized manner.So it is impossible to obtain method infomation immediately.What can I do ?

link|improve this question

43% accept rate
feedback

1 Answer

Actually, the accept method is called from your own code and you shoult pass your ClassVisitor implementation. Then methods of that visitor will be called and when call toaccept completes all information about class is passed trough that visitor. You can record it in some visitor's member fields or process imediately. If you need in-memory model of your class, you can use ClassNode as such visitor.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.