Interface dnx.lr.ChildNodeMapper
All Packages Class Hierarchy This Package Previous Next Index
Interface dnx.lr.ChildNodeMapper
- public interface ChildNodeMapper
- extends Object
Used when doing a mapping over the children of a node.
-
childNodeMapperCallback(Node, Node, int, int, Object)
- Callback for NODE, whose parent is PARENT; NODE is the NODEINDth
node stored in the FIELDINDth field (which will always be an MFNode
or SFNode) of PARENT.
childNodeMapperCallback
public abstract boolean childNodeMapperCallback(Node node,
Node parent,
int fieldind,
int nodeind,
Object mapData)
- Callback for NODE, whose parent is PARENT; NODE is the NODEINDth
node stored in the FIELDINDth field (which will always be an MFNode
or SFNode) of PARENT. MAPDATA is the argument passed into the mapping
function. The function should return true to stop the mapping, or
false to continue.
All Packages Class Hierarchy This Package Previous Next Index