Class CustomizersFactory
- java.lang.Object
 - 
- groovy.util.AbstractFactory
 - 
- org.codehaus.groovy.control.customizers.builder.CustomizersFactory
 
 
 
- 
- All Implemented Interfaces:
 Factory,PostCompletionFactory
public class CustomizersFactory extends AbstractFactory implements PostCompletionFactory
This factory generates an array of compilation customizers.- Since:
 - 2.1.0
 
 
- 
- 
Constructor Summary
Constructors Constructor Description CustomizersFactory() 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ObjectnewInstance(FactoryBuilderSupport builder, Object name, Object value, Map attributes)ObjectpostCompleteNode(FactoryBuilderSupport factory, Object parent, Object node)voidsetChild(FactoryBuilderSupport builder, Object parent, Object child)- 
Methods inherited from class groovy.util.AbstractFactory
isHandlesNodeChildren, isLeaf, onFactoryRegistration, onHandleNodeAttributes, onNodeChildren, onNodeCompleted, setParent 
 - 
 
 - 
 
- 
- 
Method Detail
- 
newInstance
public Object newInstance(FactoryBuilderSupport builder, Object name, Object value, Map attributes) throws InstantiationException, IllegalAccessException
- Specified by:
 newInstancein interfaceFactory- Parameters:
 builder- the FactoryBuildername- the name of the node being builtvalue- the 'value' argument in the build nodeattributes- the attributes of the build arg- Returns:
 - the object created for the builder
 - Throws:
 InstantiationException- if attempting to instantiate an interface or abstract classIllegalAccessException- if the instance can't be created due to a security violation
 
- 
setChild
public void setChild(FactoryBuilderSupport builder, Object parent, Object child)
- Specified by:
 setChildin interfaceFactory- Overrides:
 setChildin classAbstractFactory
 
- 
postCompleteNode
public Object postCompleteNode(FactoryBuilderSupport factory, Object parent, Object node)
- Specified by:
 postCompleteNodein interfacePostCompletionFactory
 
 - 
 
 -