Class TestNode
- java.lang.Object
- 
- jadex.rules.rulesystem.rete.nodes.AbstractNode
- 
- jadex.rules.rulesystem.rete.nodes.TestNode
 
 
- 
- All Implemented Interfaces:
- INode,- ITupleConsumerNode,- ITupleSourceNode,- java.lang.Cloneable
 
 public class TestNode extends AbstractNode implements ITupleConsumerNode, ITupleSourceNode A test node takes evaluates a predicate.
- 
- 
Field SummaryFields Modifier and Type Field Description protected IConstraintEvaluatorevaluatorThe constraint evaluator.protected AttributeSetindirectsThe set of indirect attributes.protected AttributeSetrelevantsThe set of relevant attributes.protected ITupleConsumerNode[]tconsumersThe tuple consumers.protected ITupleSourceNodetsourceThe tuple source.- 
Fields inherited from class jadex.rules.rulesystem.rete.nodes.AbstractNodeclones, nodeid
 
- 
 - 
Constructor SummaryConstructors Constructor Description TestNode(int nodeid, IConstraintEvaluator evaluator)Create a new test node.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddTuple(Tuple tuple, IOAVState state, ReteMemory mem, AbstractAgenda agenda)Add a new tuple to this node.voidaddTupleConsumer(ITupleConsumerNode node)Add an tuple consumer node.java.lang.ObjectcreateNodeMemory(IOAVState state)Create the node memory.protected voiddoClone(java.lang.Object theclone)Do clone makes a deep clone without regarding cycles.IConstraintEvaluatorgetConstraintEvaluator()Get the evaluator.AttributeSetgetIndirectAttributes()Get the set of indirect attribute types.java.util.CollectiongetNodeMemory(ReteMemory mem)Get the memory for this node.AttributeSetgetRelevantAttributes()Get the set of relevant attribute types.ITupleConsumerNode[]getTupleConsumers()Get all tuple consumer nodes.ITupleSourceNodegetTupleSource()Get the tuple source of this node.booleanisAffected(OAVAttributeType attr)Test if the node is affected from a modification.voidmodifyIndirectObject(java.lang.Object object, OAVAttributeType type, java.lang.Object oldvalue, java.lang.Object newvalue, IOAVState state, ReteMemory mem, AbstractAgenda agenda)Propagate an indirect object change to this node.voidmodifyTuple(Tuple tuple, int tupleindex, OAVAttributeType type, java.lang.Object oldvalue, java.lang.Object newvalue, IOAVState state, ReteMemory mem, AbstractAgenda agenda)Modify a tuple in this node.protected voidpropagateAdditionToTupleConsumers(Tuple tuple, IOAVState state, ReteMemory mem, AbstractAgenda agenda)Propagate a new tuple to all tuple consumers.protected voidpropagateModificationToTupleConsumers(Tuple tuple, int tupleindex, OAVAttributeType type, java.lang.Object oldvalue, java.lang.Object newvalue, IOAVState state, ReteMemory mem, AbstractAgenda agenda)Propagate a modified tuple to all tuple consumers.protected voidpropagateRemovalToTupleConsumers(Tuple tuple, IOAVState state, ReteMemory mem, AbstractAgenda agenda)Propagate a removed tuple to all tuple consumers.voidremoveTuple(Tuple tuple, IOAVState state, ReteMemory mem, AbstractAgenda agenda)Remove a tuple from this node.voidremoveTupleConsumer(ITupleConsumerNode node)Remove an tuple consumer.voidsetTupleSource(ITupleSourceNode node)Set the tuple source of this node.- 
Methods inherited from class jadex.rules.rulesystem.rete.nodes.AbstractNodecheckNodeConsistency, clone, equals, getNodeId, hashCode, toString, toString
 - 
Methods inherited from class java.lang.Objectfinalize, getClass, notify, notifyAll, wait, wait, wait
 - 
Methods inherited from interface jadex.rules.rulesystem.rete.nodes.INodecheckNodeConsistency, clone, getNodeId
 
- 
 
- 
- 
- 
Field Detail- 
tconsumersprotected ITupleConsumerNode[] tconsumers The tuple consumers.
 - 
tsourceprotected ITupleSourceNode tsource The tuple source.
 - 
evaluatorprotected final IConstraintEvaluator evaluator The constraint evaluator.
 - 
relevantsprotected volatile AttributeSet relevants The set of relevant attributes.
 - 
indirectsprotected volatile AttributeSet indirects The set of indirect attributes.
 
- 
 - 
Constructor Detail- 
TestNodepublic TestNode(int nodeid, IConstraintEvaluator evaluator)Create a new test node.- Parameters:
- evaluator- The evaluator.
 
 
- 
 - 
Method Detail- 
addTuplepublic void addTuple(Tuple tuple, IOAVState state, ReteMemory mem, AbstractAgenda agenda) Add a new tuple to this node.- Specified by:
- addTuplein interface- ITupleConsumerNode
- Parameters:
- tuple- The tuple.
 
 - 
removeTuplepublic void removeTuple(Tuple tuple, IOAVState state, ReteMemory mem, AbstractAgenda agenda) Remove a tuple from this node.- Specified by:
- removeTuplein interface- ITupleConsumerNode
- Parameters:
- tuple- The tuple.
 
 - 
modifyTuplepublic void modifyTuple(Tuple tuple, int tupleindex, OAVAttributeType type, java.lang.Object oldvalue, java.lang.Object newvalue, IOAVState state, ReteMemory mem, AbstractAgenda agenda) Modify a tuple in this node.- Specified by:
- modifyTuplein interface- ITupleConsumerNode
- Parameters:
- tuple- The tuple.
 
 - 
modifyIndirectObjectpublic void modifyIndirectObject(java.lang.Object object, OAVAttributeType type, java.lang.Object oldvalue, java.lang.Object newvalue, IOAVState state, ReteMemory mem, AbstractAgenda agenda)Propagate an indirect object change to this node.- Specified by:
- modifyIndirectObjectin interface- INode
- Parameters:
- object- The changed object.
 
 - 
setTupleSourcepublic void setTupleSource(ITupleSourceNode node) Set the tuple source of this node.- Specified by:
- setTupleSourcein interface- ITupleConsumerNode
- Parameters:
- node- The tuple source node.
 
 - 
getTupleSourcepublic ITupleSourceNode getTupleSource() Get the tuple source of this node.- Specified by:
- getTupleSourcein interface- ITupleConsumerNode
- Returns:
- The object source node.
 
 - 
addTupleConsumerpublic void addTupleConsumer(ITupleConsumerNode node) Add an tuple consumer node.- Specified by:
- addTupleConsumerin interface- ITupleSourceNode
- Parameters:
- node- A new consumer node.
 
 - 
removeTupleConsumerpublic void removeTupleConsumer(ITupleConsumerNode node) Remove an tuple consumer.- Specified by:
- removeTupleConsumerin interface- ITupleSourceNode
- Parameters:
- node- The consumer node.
 
 - 
getNodeMemorypublic java.util.Collection getNodeMemory(ReteMemory mem) Get the memory for this node.- Specified by:
- getNodeMemoryin interface- INode
- Specified by:
- getNodeMemoryin interface- ITupleSourceNode
- Returns:
- The memory.
 
 - 
getTupleConsumerspublic ITupleConsumerNode[] getTupleConsumers() Get all tuple consumer nodes.- Specified by:
- getTupleConsumersin interface- ITupleSourceNode
- Returns:
- All tuple consumer nodes.
 
 - 
getRelevantAttributespublic AttributeSet getRelevantAttributes() Get the set of relevant attribute types.- Specified by:
- getRelevantAttributesin interface- INode
 
 - 
getIndirectAttributespublic AttributeSet getIndirectAttributes() Get the set of indirect attribute types. I.e. attributes of objects, which are not part of an object conditions (e.g. for chained extractors)- Specified by:
- getIndirectAttributesin interface- INode
- Returns:
- The relevant attribute types.
 
 - 
createNodeMemorypublic java.lang.Object createNodeMemory(IOAVState state) Create the node memory.- Specified by:
- createNodeMemoryin interface- INode
- Parameters:
- state- The state.
- Returns:
- The node memory.
 
 - 
isAffectedpublic boolean isAffected(OAVAttributeType attr) Test if the node is affected from a modification.- Parameters:
- type- The attribute type.
- Returns:
- True, if possibly affected.
 
 - 
getConstraintEvaluatorpublic IConstraintEvaluator getConstraintEvaluator() Get the evaluator.
 - 
propagateAdditionToTupleConsumersprotected void propagateAdditionToTupleConsumers(Tuple tuple, IOAVState state, ReteMemory mem, AbstractAgenda agenda) Propagate a new tuple to all tuple consumers.- Parameters:
- tuple- The new tuple.
 
 - 
propagateRemovalToTupleConsumersprotected void propagateRemovalToTupleConsumers(Tuple tuple, IOAVState state, ReteMemory mem, AbstractAgenda agenda) Propagate a removed tuple to all tuple consumers.- Parameters:
- tuple- The new tuple.
 
 - 
propagateModificationToTupleConsumersprotected void propagateModificationToTupleConsumers(Tuple tuple, int tupleindex, OAVAttributeType type, java.lang.Object oldvalue, java.lang.Object newvalue, IOAVState state, ReteMemory mem, AbstractAgenda agenda) Propagate a modified tuple to all tuple consumers.- Parameters:
- tuple- The new tuple.
 
 - 
doCloneprotected void doClone(java.lang.Object theclone) Do clone makes a deep clone without regarding cycles. Method is overridden by subclasses to actually incorporate their attributes.- Specified by:
- doClonein class- AbstractNode
- Parameters:
- theclone- The clone.
 
 
- 
 
-