Interface ItemInfoBuilder.Listener
-
- Enclosing class:
- ItemInfoBuilder
public static interface ItemInfoBuilder.Listener
A listener for receiving notifications about items built by the builders in this class.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
createChildInfos(NodeId id, Iterator<ChildInfo> childInfos)
Notification that newChildInfo
s have been built.void
createNodeInfo(NodeInfo nodeInfo)
Notification that a newNodeInfo
has been built.void
createPropertyInfo(PropertyInfo propertyInfo)
Notification that a newPropertyInfo
has been built.
-
-
-
Method Detail
-
createNodeInfo
void createNodeInfo(NodeInfo nodeInfo)
Notification that a newNodeInfo
has been built.- Parameters:
nodeInfo
-
-
createChildInfos
void createChildInfos(NodeId id, Iterator<ChildInfo> childInfos)
Notification that newChildInfo
s have been built.- Parameters:
id
- Id of the parent to which thechildInfos
belongchildInfos
-
-
createPropertyInfo
void createPropertyInfo(PropertyInfo propertyInfo)
Notification that a newPropertyInfo
has been built.- Parameters:
propertyInfo
-
-
-