-
- All Implemented Interfaces:
public interface ScanConfigurationConfigures the scanning configuration.
-
-
Method Summary
Modifier and Type Method Description abstract UnitaddPackage(String packageName)Add a package in which to scan classes in hierarchies. abstract UnitremovePackage(String packageName)Don't scan classes in packageName package when building hierarchies. abstract UnitaddClasspath(String classpath)Add a path to the classpath. abstract UnitremoveClasspath(String classpath)Remove the path from the classpath. abstract List<String>getScanPackages()The list of packages in which to scan classes. abstract ClassLoadergetClassLoader()-
-
Method Detail
-
addPackage
abstract Unit addPackage(String packageName)
Add a package in which to scan classes in hierarchies.
-
removePackage
abstract Unit removePackage(String packageName)
Don't scan classes in packageName package when building hierarchies.
-
addClasspath
abstract Unit addClasspath(String classpath)
Add a path to the classpath.
-
removeClasspath
abstract Unit removeClasspath(String classpath)
Remove the path from the classpath.
-
getScanPackages
abstract List<String> getScanPackages()
The list of packages in which to scan classes.
-
getClassLoader
abstract ClassLoader getClassLoader()
-
-
-
-