sdt.df
Class Node

java.lang.Object
  |
  +--java.lang.Thread
        |
        +--sdt.df.Node
Direct Known Subclasses:
Compare, Compete, Copy, Evaluate, Mate

public abstract class Node
extends java.lang.Thread

Abstract implementation of a Node in a dataflow graph.


Field Summary
protected  Arc[] input
          input arcs to the node.
protected  Arc[] output
          output arcs to the node.
 
Fields inherited from class java.lang.Thread
MAX_PRIORITY, MIN_PRIORITY, NORM_PRIORITY
 
Constructor Summary
Node()
           
 
Method Summary
protected  void setInput(Arc in)
          sets the input arcs.
protected  void setInput(Arc in1, Arc in2)
          sets the input arcs.
protected  void setOutput(Arc out)
          sets the output arcs.
protected  void setOutput(Arc out1, Arc out2)
          sets the output arcs.
 
Methods inherited from class java.lang.Thread
activeCount, checkAccess, countStackFrames, currentThread, destroy, dumpStack, enumerate, getContextClassLoader, getName, getPriority, getThreadGroup, interrupt, interrupted, isAlive, isDaemon, isInterrupted, join, join, join, resume, run, setContextClassLoader, setDaemon, setName, setPriority, sleep, sleep, start, stop, stop, suspend, toString, yield
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

input

protected Arc[] input
input arcs to the node.

output

protected Arc[] output
output arcs to the node.
Constructor Detail

Node

public Node()
Method Detail

setInput

protected void setInput(Arc in)
sets the input arcs.

setInput

protected void setInput(Arc in1,
                        Arc in2)
sets the input arcs.

setOutput

protected void setOutput(Arc out)
sets the output arcs.

setOutput

protected void setOutput(Arc out1,
                         Arc out2)
sets the output arcs.