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.
Version: $Id: Visitor.java 386056 2006-03-15 11:31:56Z tcurdt $
Author: M. Dahm
public void visitCode(
Code obj)
public void visitField(
Field obj)
public void visitMethod(
Method obj)
public void visitUnknown(
Unknown obj)