An extension object for Asakusa DSL compiler framework.
| Type | Name and description |
|---|---|
java.lang.String |
batchIdPrefixThe custom batch ID prefix for applications. |
java.util.Map<java.lang.Object, java.lang.Object> |
compilerPropertiesThe compiler properties. |
java.lang.Object |
excludeThe ignoring batch class name pattern ( "*" as a wildcard character).
|
boolean |
failOnErrorWhether fails on compilation errors or not. |
java.lang.Object |
includeThe accepting batch class name pattern ( "*" as a wildcard character).
|
java.lang.Object |
outputDirectoryThe base output directory for compilation results. |
java.lang.String |
runtimeWorkingDirectoryThe custom runtime working directory URI. |
| Type Params | Return Type | Name and description |
|---|---|---|
|
void |
compilerProperties(java.util.Map<?, ?> additions)Adds compiler properties. |
|
void |
compilerProperty(java.lang.Object key, java.lang.Object value)Adds a compiler property. |
|
java.util.Map<java.lang.Object, java.lang.Object> |
getOptions()Returns the compiler properties. |
|
void |
option(java.lang.Object key, java.lang.Object value)Adds a compiler property. |
|
void |
options(java.util.Map<?, ?> additions)Adds compiler properties. |
|
void |
setOptions(java.util.Map<?, ?> options)Sets the compiler properties. |
| Methods inherited from class | Name |
|---|---|
class java.lang.Object |
java.lang.Object#wait(long, int), java.lang.Object#wait(long), java.lang.Object#wait(), java.lang.Object#equals(java.lang.Object), java.lang.Object#toString(), java.lang.Object#hashCode(), java.lang.Object#getClass(), java.lang.Object#notify(), java.lang.Object#notifyAll() |
The custom batch ID prefix for applications.
The compiler properties.
The ignoring batch class name pattern ("*" as a wildcard character).
This can be a list of class name patterns.
Whether fails on compilation errors or not.
The accepting batch class name pattern ("*" as a wildcard character).
This can be a list of class name patterns.
The base output directory for compilation results.
This path will be resolved using project.file(...).
The custom runtime working directory URI.
Adds compiler properties.
additions - the additional compiler propertiesAdds a compiler property.
additionalOptions - the additional compiler propertiesReturns the compiler properties. This is alias of compilerProperties.
Adds a compiler property.
additionalOptions - the additional compiler propertiesAdds compiler properties.
additions - the additional compiler propertiesSets the compiler properties. This is alias of compilerProperties.
options - the map of compiler properties