public class ConstantPoolScanner
extends java.lang.Object
Enables us to check things quickly in the constant pool. This version accumulates the class references and the method
references, for classes that start with 'j' (we want to catch: java/lang). It skips everything it can and the end
result is a list of class references and a list of method references. The former look like this 'a/b/C' whilst the
latter look like this 'java/lang/Foo.bar' (the descriptor for the method is not included). Interface methods are
skipped.
Useful reference: http://java.sun.com/docs/books/jvms/second_edition/html/ClassFile.doc.html
- Since:
- 0.7.3