Hi All, 2 questions, Firstly I tried to download BCEL 5.1 from http://jakarta.apache.org/site/binindex.cgi, but when I tried to open the bcel-5.1 jar file I got the following error: "Failed to load Main-Class manifest attribute from C:\....." Is this because I am running Windows XP? Instead I downloaded the source code and compile it using Eclipse which worked fine.
Secondly, I have been looking at the BCELifier class. What I am trying to do is to analyse the .class file, looking for methods, fields and in particular method invocations. It is straight forward to determine methods and fields but I am having problems with method invocations. From looking at the documentation on the bcel webpage, it would appear that method invocations are stored as ConstantMethodRef's which is stored in the ConstantPool and thus I have been paying attention to getting the class Constant Pool. But I am unsure how to extract method invocations from this. Any help would be gratefully appreciated. >From the website there only appears to be a one page manual and the only other >documentation is java docs. If you could point me to further detailed documentation >that also contains examples then that would be great. Thanks a lot for time and any suggestions. Cheers, Frank.
