orc.runtime.nodes
Class Node

java.lang.Object
  extended by orc.runtime.nodes.Node
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
Assign, Call, Defs, Fork, Let, Pub, Result, Return, Semi, Silent, Store, Subgoal, Unwind

public abstract class Node
extends java.lang.Object
implements java.io.Serializable

Abstract base class for compile nodes

Author:
wcook
See Also:
Serialized Form

Constructor Summary
Node()
           
 
Method Summary
abstract  void process(Token t)
          The process method is the fundamental operation in the execution engine.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Node

public Node()
Method Detail

process

public abstract void process(Token t)
The process method is the fundamental operation in the execution engine. It is called to perform the action of the node on a token.

Parameters:
t - input token being processed