Interface ItemInfoBuilder.Listener
-
- Enclosing class:
- ItemInfoBuilder
public static interface ItemInfoBuilder.ListenerA 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 voidcreateChildInfos(NodeId id, Iterator<ChildInfo> childInfos)Notification that newChildInfos have been built.voidcreateNodeInfo(NodeInfo nodeInfo)Notification that a newNodeInfohas been built.voidcreatePropertyInfo(PropertyInfo propertyInfo)Notification that a newPropertyInfohas been built.
-
-
-
Method Detail
-
createNodeInfo
void createNodeInfo(NodeInfo nodeInfo)
Notification that a newNodeInfohas been built.- Parameters:
nodeInfo-
-
createChildInfos
void createChildInfos(NodeId id, Iterator<ChildInfo> childInfos)
Notification that newChildInfos have been built.- Parameters:
id- Id of the parent to which thechildInfosbelongchildInfos-
-
createPropertyInfo
void createPropertyInfo(PropertyInfo propertyInfo)
Notification that a newPropertyInfohas been built.- Parameters:
propertyInfo-
-
-