[Java] Class SourceAwareCustomizer
- org.codehaus.groovy.control.customizers.SourceAwareCustomizer
A base class for customizers which only have to be applied on specific source units. This is for example useful if you want a customizer to be applied only for files matching some extensions.
For convenience, this class implements several methods that you may extend to customize the behaviour of this utility. For example, if you want to apply a customizer only for classes matching the '.foo' file extension, then you only have to override the acceptExtension(String) method:
return "foo".equals(extension)
- Since:
- 2.1.0
- Authors:
- Cedric Champeau
Fields inherited from class | Fields |
---|---|
class DelegatingCustomizer | delegate |
Constructor Summary
Constructor and description |
---|
SourceAwareCustomizer
(CompilationCustomizer delegate) |
Methods Summary
Type Params | Return Type | Name and description |
---|---|---|
boolean |
accept(String fileName) | |
boolean |
acceptBaseName(String baseName) | |
boolean |
acceptClass(ClassNode cnode) | |
boolean |
acceptExtension(String extension) | |
boolean |
acceptSource(SourceUnit unit) | |
void |
call(SourceUnit source, GeneratorContext context, ClassNode classNode) | |
void |
setBaseNameValidator(Closure<Boolean> baseNameValidator) | |
void |
setClassValidator(Closure<Boolean> classValidator) | |
void |
setExtensionValidator(Closure<Boolean> extensionValidator) | |
void |
setSourceUnitValidator(Closure<Boolean> sourceUnitValidator) |
Inherited Methods Summary
Methods inherited from class | Name |
---|---|
class DelegatingCustomizer | call |
class CompilationCustomizer | getPhase |
Constructor Detail
public SourceAwareCustomizer(CompilationCustomizer delegate)
Method Detail
public boolean accept(String fileName)
public boolean acceptBaseName(String baseName)
public boolean acceptClass(ClassNode cnode)
public boolean acceptExtension(String extension)
public boolean acceptSource(SourceUnit unit)
@Override public void call(SourceUnit source, GeneratorContext context, ClassNode classNode)
public void setBaseNameValidator(Closure<Boolean> baseNameValidator)
public void setClassValidator(Closure<Boolean> classValidator)
public void setExtensionValidator(Closure<Boolean> extensionValidator)
public void setSourceUnitValidator(Closure<Boolean> sourceUnitValidator)
© 2003-2020 The Apache Software Foundation
Licensed under the Apache license.
https://docs.groovy-lang.org/2.4.21/html/gapi/org/codehaus/groovy/control/customizers/SourceAwareCustomizer.html