public interface ClassPathVisitor
Visitor interface for examining classpath entries.
The visitor declares methods for visiting various types of classpath. It can be used by calling
JavaClassPath.accept(
All of the declared methods in this interface are default
and throw an
UnsupportedOperationException by default. Additional visit
methods may be added to this
interface with similar default implementations.
Clients are recommended to implement this interface.
public default void | visit( Visits a class path reference. |
public default void | visit( Visits a compilation classpath. |
public default void | visit( Visits a file classpath. |
public default void | visit( Visits an SDK classpath. |
Visits a class path reference.
classpathThe classpath entry.
Visits a compilation classpath.
classpathThe classpath entry.
Visits a file classpath.
classpathThe classpath entry.
Visits an SDK classpath.
classpathThe classpath entry.