Package net.officefloor.compile.classes
Interface ClassPathScannerContext
-
public interface ClassPathScannerContextContext for theClassPathScanner.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddEntry(java.lang.String entryPath)Adds aClasspath entry for the package.java.lang.ClassLoadergetClassLoader()Obtains theClassLoader.java.lang.StringgetPackageName()Obtains the name of thePackageto scan for entries.
-
-
-
Method Detail
-
getPackageName
java.lang.String getPackageName()
Obtains the name of thePackageto scan for entries.- Returns:
- Name of the
Packageto scan for entries.
-
getClassLoader
java.lang.ClassLoader getClassLoader()
Obtains theClassLoader.- Returns:
ClassLoader.
-
addEntry
void addEntry(java.lang.String entryPath)
Adds aClasspath entry for the package.- Parameters:
entryPath-Classpath entry for the package. This is required to be full path to the entry.
-
-