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

LinkedListNode (Drools 4.0.0.11754MR2 API) - JBoss RULES 4.0.0.11754MR2 API 英文版文档


org.drools.util
Interface LinkedListNode

All Superinterfaces:
Serializable
All Known Implementing Classes:
AbstractBaseLinkedListNode, ActivationGroupNode, CompositeObjectSinkAdapter.FieldIndex, LinkedListEntry, LogicalDependency, RuleFlowGroupNode, ScheduledAgendaItem

public interface LinkedListNode
extends Serializable

Items placed in a LinkedList must implement this interface .

Author:
Mark Proctor, Bob McWhirter
See Also:
LinkedList

Method Summary
 LinkedListNode getNext()
          Returns the next node
 LinkedListNode getPrevious()
          Returns the previous node
 void setNext(LinkedListNode next)
          Sets the next node
 void setPrevious(LinkedListNode previous)
          Sets the previous node
 

Method Detail

getNext

LinkedListNode getNext()
Returns the next node

Returns:
The next LinkedListNode

setNext

void setNext(LinkedListNode next)
Sets the next node

Parameters:
next - The next LinkedListNode

getPrevious

LinkedListNode getPrevious()
Returns the previous node

Returns:
The previous LinkedListNode

setPrevious

void setPrevious(LinkedListNode previous)
Sets the previous node

Parameters:
previous - The previous LinkedListNode


Copyright © 2001-2007 JBoss Inc.. All Rights Reserved.