예제 #1
0
 /**
  * Constructor that creates a BaseObject with the given port and sets the incoming and outgoing
  * attributes.
  *
  * @param port Port number to create the BaseObject on
  * @see context.arch.BaseObject
  */
 public Interpreter(int port) {
   super(port);
   debugprintln(DEBUG, "Interpreter construction after super () port=" + port);
   inAttributes = setInAttributes();
   inAttributeTypes = inAttributes.toTypesHashtable();
   outAttributes = setOutAttributes();
   outAttributeTypes = outAttributes.toTypesHashtable();
 }