Using ASM how can I know whether the compiled code in jar is using specific packages or classes rather than checking for a specific method in a class

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

You can create visitors which record all the packages or classes which are used. (Or only check specific ones) There are examples of how to create visitors on the ObjectWeb ASM web site.

Do you have a specific question?

link|improve this answer
What is the corresponding reader for the packages.. – Shishir Dec 22 '11 at 11:51
1  
There is no package specific readers as there is not package specific information in the class file format. You have to create fields, class, method and method body visitors. – Peter Lawrey Dec 22 '11 at 13:19
feedback

Your Answer

 
or
required, but never shown

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