-
- All Implemented Interfaces:
public interface ScanConfiguration
Configures the scanning configuration.
-
-
Method Summary
Modifier and Type Method Description abstract Unit
addPackage(String packageName)
Add a package in which to scan classes in hierarchies. abstract Unit
removePackage(String packageName)
Don't scan classes in packageName package when building hierarchies. abstract Unit
addClasspath(String classpath)
Add a path to the classpath. abstract Unit
removeClasspath(String classpath)
Remove the path from the classpath. abstract List<String>
getScanPackages()
The list of packages in which to scan classes. abstract ClassLoader
getClassLoader()
-
-
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()
-
-
-
-