org.apache.bcel.classfile
Interface Visitor
public
interface
Visitor
Interface to make use of the Visitor pattern programming style.
I.e. a class that implements this interface can traverse the contents of
a Java class just by calling the `accept' method which all classes have.
public void visitCode(
Code obj)
public void visitField(
Field obj)
public void visitMethod(
Method obj)
public void visitUnknown(
Unknown obj)