-
- All Implemented Interfaces:
-
io.github.kelvindev15.kotlin2plantuml.utils.ScanConfiguration
public class DefaultScanConfiguration.Companion implements ScanConfiguration
-
-
Field Summary
Fields Modifier and Type Field Description private final List<String>
scanPackages
private final ClassLoader
classLoader
public final static DefaultScanConfiguration.Companion
INSTANCE
-
Method Summary
Modifier and Type Method Description Unit
addPackage(String packageName)
Add a package in which to scan classes in hierarchies. Unit
removePackage(String packageName)
Don't scan classes in packageName package when building hierarchies. Unit
addClasspath(String classpath)
Add a path to the classpath. Unit
removeClasspath(String classpath)
Remove the path from the classpath. List<String>
getScanPackages()
The list of packages in which to scan classes. ClassLoader
getClassLoader()
-
-
Method Detail
-
addPackage
Unit addPackage(String packageName)
Add a package in which to scan classes in hierarchies.
-
removePackage
Unit removePackage(String packageName)
Don't scan classes in packageName package when building hierarchies.
-
addClasspath
Unit addClasspath(String classpath)
Add a path to the classpath.
-
removeClasspath
Unit removeClasspath(String classpath)
Remove the path from the classpath.
-
getScanPackages
List<String> getScanPackages()
The list of packages in which to scan classes.
-
getClassLoader
ClassLoader getClassLoader()
-
-
-
-