Package net.officefloor.compile
Interface OfficeFloorCompilerConfigurerContext
-
public interface OfficeFloorCompilerConfigurerContext
Context for theOfficeFloorCompilerConfigurer
.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description OfficeFloorCompiler
getOfficeFloorCompiler()
Obtains theOfficeFloorCompiler
being configured.void
setClassLoader(java.lang.ClassLoader classLoader)
Allows specifying anotherClassLoader
.
-
-
-
Method Detail
-
getOfficeFloorCompiler
OfficeFloorCompiler getOfficeFloorCompiler()
Obtains theOfficeFloorCompiler
being configured.- Returns:
OfficeFloorCompiler
being configured.
-
setClassLoader
void setClassLoader(java.lang.ClassLoader classLoader) throws java.lang.IllegalArgumentException
Allows specifying another
ClassLoader
.To ensure
Class
compatibility, the inputClassLoader
must be a child of the currentOfficeFloorCompiler
ClassLoader
.- Parameters:
classLoader
-ClassLoader
that is child ofOfficeFloorCompiler
ClassLoader
.- Throws:
java.lang.IllegalArgumentException
- If not a child.
-
-