All Downloads are FREE. Search and download functionalities are using the official Maven repository.

serp.bytecode.visitor.VisitAcceptor Maven / Gradle / Ivy

There is a newer version: 4.0.0
Show newest version
package serp.bytecode.visitor;


/**
 * Interface denoting an entity that can accept a {@link BCVisitor} and
 * provide its internal state to it. All entities in the bytecode framework
 * implement this interface.
 *
 * @author Abe White
 */
public interface VisitAcceptor {
    /**
     * Accept a visit from a {@link BCVisitor}, calling the appropriate methods
     * to notify the visitor that it has entered this entity, and
     * to provide it with the proper callbacks for each sub-entity owned
     * by this one.
     */
    public void acceptVisit(BCVisitor visitor);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy