Package groovy.transform.options
Class DefaultPropertyHandler
java.lang.Object
groovy.transform.options.PropertyHandler
groovy.transform.options.DefaultPropertyHandler
-
Field Summary
Fields inherited from class groovy.transform.options.PropertyHandler
PROPERTY_OPTIONS_TYPE
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptioncreatePropInit
(AbstractASTTransformation xform, AnnotationNode anno, ClassNode cNode, PropertyNode pNode, Parameter namedArgsMap) Create a statement that will initialize the property including any defensive copying.boolean
validateAttributes
(AbstractASTTransformation xform, AnnotationNode anno) boolean
validateProperties
(AbstractASTTransformation xform, BlockStatement body, ClassNode cNode, List<PropertyNode> props) Methods inherited from class groovy.transform.options.PropertyHandler
createPropertyHandler, createPropGetter, createPropSetter, isValidAttribute
-
Constructor Details
-
DefaultPropertyHandler
public DefaultPropertyHandler()
-
-
Method Details
-
validateAttributes
- Specified by:
validateAttributes
in classPropertyHandler
-
validateProperties
public boolean validateProperties(AbstractASTTransformation xform, BlockStatement body, ClassNode cNode, List<PropertyNode> props) - Overrides:
validateProperties
in classPropertyHandler
-
createPropInit
public Statement createPropInit(AbstractASTTransformation xform, AnnotationNode anno, ClassNode cNode, PropertyNode pNode, Parameter namedArgsMap) Description copied from class:PropertyHandler
Create a statement that will initialize the property including any defensive copying. Null if no statement should be added.- Specified by:
createPropInit
in classPropertyHandler
- Parameters:
xform
- the transform being processedanno
- the '@ImmutableBase' annotation nodecNode
- the classnode containing the propertypNode
- the property node to initializenamedArgsMap
- an "args" Map if the property value should come from a named arg map or null if not
-