org.codehaus.enunciate.main
Interface ClasspathHandler

All Known Implementing Classes:
GWTModuleClasspathHandler, ImportedClassesClasspathHandler, PackageInfoClasspathHandler

public interface ClasspathHandler

Event handler for classpath scanning.

Author:
Ryan Heaton

Method Summary
 boolean endPathEntry(java.io.File pathEntry)
          End an entry on the classpath.
 void handleResource(ClasspathResource resource)
          Handle a classpath resource.
 void startPathEntry(java.io.File pathEntry)
          Start an entry on the classpath.
 

Method Detail

startPathEntry

void startPathEntry(java.io.File pathEntry)
Start an entry on the classpath.

Parameters:
pathEntry - The path entry.

handleResource

void handleResource(ClasspathResource resource)
Handle a classpath resource.

Parameters:
resource - The classpath resource to handle.

endPathEntry

boolean endPathEntry(java.io.File pathEntry)
End an entry on the classpath.

Parameters:
pathEntry - The entry on the classpath that we're ending.
Returns:
Whether to attempt to look up the sources for the specified path entry.