Class JctFileManagerJvmModulePathConfigurer
java.lang.Object
io.github.ascopes.jct.filemanagers.config.JctFileManagerJvmModulePathConfigurer
- All Implemented Interfaces:
JctFileManagerConfigurer
public final class JctFileManagerJvmModulePathConfigurer
extends Object
implements JctFileManagerConfigurer
Configurer for a file manager that applies the running JVM's module path to the file manager.
If module path inheritance is disabled in the compiler, then this will not run.
- Since:
- 0.0.1
- Author:
- Ashley Scopes
-
Constructor Summary
ConstructorsConstructorDescriptionInitialise the configurer with the desired compiler. -
Method Summary
Modifier and TypeMethodDescriptionconfigure(JctFileManager fileManager) Configure the file manager implementation.booleanDetermine if this configurer is enabled or not.
-
Constructor Details
-
JctFileManagerJvmModulePathConfigurer
Initialise the configurer with the desired compiler.- Parameters:
compiler- the compiler to wrap.
-
-
Method Details
-
configure
Description copied from interface:JctFileManagerConfigurerConfigure the file manager implementation.- Specified by:
configurein interfaceJctFileManagerConfigurer- Parameters:
fileManager- the file manager implementation.- Returns:
- the new file manager (this may be the same as the input file manager).
-
isEnabled
Description copied from interface:JctFileManagerConfigurerDetermine if this configurer is enabled or not.Default implementations are enabled automatically unless otherwise specified.
- Specified by:
isEnabledin interfaceJctFileManagerConfigurer- Returns:
trueif enabled,falseif disabled.
-