Package groovy.util
Class ObjectGraphBuilder.DefaultChildPropertySetter
java.lang.Object
groovy.util.ObjectGraphBuilder.DefaultChildPropertySetter
- All Implemented Interfaces:
- ObjectGraphBuilder.ChildPropertySetter
- Enclosing class:
- ObjectGraphBuilder
public static class ObjectGraphBuilder.DefaultChildPropertySetter extends java.lang.Object implements ObjectGraphBuilder.ChildPropertySetter
Default impl that calls parent.propertyName = child
If parent.propertyName is a Collection it will try to add child to the collection.
If parent.propertyName is a Collection it will try to add child to the collection.
- 
Constructor SummaryConstructors Constructor Description DefaultChildPropertySetter()
- 
Method SummaryModifier and Type Method Description voidsetChild(java.lang.Object parent, java.lang.Object child, java.lang.String parentName, java.lang.String propertyName)Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
- 
Constructor Details- 
DefaultChildPropertySetterpublic DefaultChildPropertySetter()
 
- 
- 
Method Details- 
setChildpublic void setChild(java.lang.Object parent, java.lang.Object child, java.lang.String parentName, java.lang.String propertyName)- Specified by:
- setChildin interface- ObjectGraphBuilder.ChildPropertySetter
- Parameters:
- parent- the parent's node value
- child- the child's node value
- parentName- the name of the parent node
- propertyName- the resolved relation name of the child
 
 
-