|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use LinkedListNode | |
---|---|
org.drools.common | |
org.drools.reteoo | |
org.drools.util |
Uses of LinkedListNode in org.drools.common |
---|
Classes in org.drools.common that implement LinkedListNode | |
---|---|
class |
ActivationGroupNode
|
class |
LogicalDependency
LogicalDependency is a special node for LinkedLists that maintains references for the Activation justifier and the justified FactHandle. |
class |
RuleFlowGroupNode
|
class |
ScheduledAgendaItem
Item entry in the Agenda . |
Methods in org.drools.common that return LinkedListNode | |
---|---|
LinkedListNode |
ScheduledAgendaItem.getNext()
|
LinkedListNode |
ScheduledAgendaItem.getPrevious()
|
Methods in org.drools.common with parameters of type LinkedListNode | |
---|---|
void |
ScheduledAgendaItem.setNext(LinkedListNode next)
|
void |
ScheduledAgendaItem.setPrevious(LinkedListNode previous)
|
Uses of LinkedListNode in org.drools.reteoo |
---|
Classes in org.drools.reteoo that implement LinkedListNode | |
---|---|
static class |
CompositeObjectSinkAdapter.FieldIndex
|
Methods in org.drools.reteoo that return LinkedListNode | |
---|---|
LinkedListNode |
CompositeObjectSinkAdapter.FieldIndex.getNext()
|
LinkedListNode |
CompositeObjectSinkAdapter.FieldIndex.getPrevious()
|
Methods in org.drools.reteoo with parameters of type LinkedListNode | |
---|---|
void |
CompositeObjectSinkAdapter.FieldIndex.setNext(LinkedListNode next)
|
void |
CompositeObjectSinkAdapter.FieldIndex.setPrevious(LinkedListNode previous)
|
Uses of LinkedListNode in org.drools.util |
---|
Classes in org.drools.util that implement LinkedListNode | |
---|---|
class |
AbstractBaseLinkedListNode
Provides a abstract base implementation that an object can extend so that it can be used in a LinkedList. |
class |
LinkedListEntry
The idea behind LinkedListNodeWrapper is to be able to add
the same LinkedListNode to multiple LinkedList s
where the node can have different previous and next nodes in each list. |
Methods in org.drools.util that return LinkedListNode | |
---|---|
LinkedListNode |
LinkedList.getFirst()
Return the first node in the list |
LinkedListNode |
LinkedList.getLast()
Return the last node in the list |
LinkedListNode |
LinkedListNode.getNext()
Returns the next node |
LinkedListNode |
AbstractBaseLinkedListNode.getNext()
|
LinkedListNode |
LinkedListNode.getPrevious()
Returns the previous node |
LinkedListNode |
AbstractBaseLinkedListNode.getPrevious()
|
LinkedListNode |
LinkedList.LinkedListIterator.next()
|
LinkedListNode |
LinkedList.removeFirst()
Remove the first node from the list. |
LinkedListNode |
LinkedList.removeLast()
Remove the last node from the list. |
Methods in org.drools.util with parameters of type LinkedListNode | |
---|---|
void |
LinkedList.add(LinkedListNode node)
Add a LinkedListNode to the list. |
void |
LinkedList.insertAfter(LinkedListNode existingNode,
LinkedListNode newNode)
|
void |
LinkedList.remove(LinkedListNode node)
Removes a LinkedListNode from the list. |
void |
LinkedListNode.setNext(LinkedListNode next)
Sets the next node |
void |
AbstractBaseLinkedListNode.setNext(LinkedListNode next)
|
void |
LinkedListNode.setPrevious(LinkedListNode previous)
Sets the previous node |
void |
AbstractBaseLinkedListNode.setPrevious(LinkedListNode previous)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |