站内搜索: 请输入搜索关键词
当前页面: 在线文档首页 > JBoss RULES 3.0.6 API 英文版文档

MultiLinkedListNode - JBoss RULES 3.0.6 API 英文版文档


org.drools.util
Interface MultiLinkedListNode

All Superinterfaces:
LinkedListNode, java.io.Serializable
All Known Implementing Classes:
BaseMultiLinkedListNode, MultiLinkedListNodeWrapper, ObjectMatches, ReteTuple

public interface MultiLinkedListNode
extends LinkedListNode

MultiLinkedListNode This is a specialization of the LinkedListNode that also keeps reference to a child node (that might me member of another LinkedList) and the containing LinkedList.


Method Summary
 MultiLinkedListNode getChild()
          Returns the child node
 LinkedList getOuterList()
          Returns the containing LinkedList
 void setChild(MultiLinkedListNode child)
          Sets the child node
 void setOuterList(LinkedList list)
          Sets the containing LinkedList
 
Methods inherited from interface org.drools.util.LinkedListNode
getNext, getPrevious, setNext, setPrevious
 

Method Detail

getChild

MultiLinkedListNode getChild()
Returns the child node

Returns:
The child LinkedListNode

setChild

void setChild(MultiLinkedListNode child)
Sets the child node

Parameters:
child - The child LinkedListNode

getOuterList

LinkedList getOuterList()
Returns the containing LinkedList

Returns:
The containing LinkedList

setOuterList

void setOuterList(LinkedList list)
Sets the containing LinkedList

Parameters:
list - The containing LinkedListNode