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 411580 2006-06-04 15:52:18Z tcurdt $
Author: M. Dahm
public void visitCode(
Code obj)
public void visitField(
Field obj)
public void visitMethod(
Method obj)
public void visitUnknown(
Unknown obj)
Copyright © 2004-2007 The Apache Software Foundation. All Rights Reserved.