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