public interface

ClassSpaceVisitor

org.eclipse.sisu.scanners.ClassSpaceVisitor
Known Indirect Subclasses

Class Overview

ASM-style visitor that visits a ClassSpace. The methods of this interface must be called in the following order: visit ( visitClass )* visitEnd.

Summary

Public Methods
abstract void visit(ClassSpace space)
Visits the start of the class space.
abstract ClassVisitor visitClass(URL url)
Visits a class resource in the class space.
abstract void visitEnd()
Visits the end of the class space.

Public Methods

public abstract void visit (ClassSpace space)

Visits the start of the class space.

Parameters
space The class space

public abstract ClassVisitor visitClass (URL url)

Visits a class resource in the class space.

Parameters
url The class resource URL
Returns
  • Class visitor; null if this visitor is not interested in visiting the class

public abstract void visitEnd ()

Visits the end of the class space.