All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class ca.carleton.sce.ucmagents.lfmparse.ASTfork

ca.carleton.sce.ucmagents.lfmparse.SimpleNode
   |
   +----ca.carleton.sce.ucmagents.lfmparse.ASTatom
           |
           +----ca.carleton.sce.ucmagents.lfmparse.ASTfork

public class ASTfork
extends ASTatom
ASTfork is a class that is used as a node in the AST in order to contain the information related to a fork (atom). This atom splits a single input segment into multiple output segments. It was built using jjtree 0.3.5.

Version:
1.00, 1998 01 28
Author:
Daniel Amyot, damyot@csi.uottawa.ca
See Also:
ASTatom, SimpleNode

Method Index

 o getInSegment()
Return the input segment of this atom (only one).
 o getOutSegmentList()
Return the list output segments of this atom (may have more than one).
 o setInSegment(String)
Set the input segment of this atom (only one).
 o setOutSegmentList(Vector)
Set the list of output segments of this atom (may have more than one).
 o toString()

Methods

 o setOutSegmentList
 public void setOutSegmentList(Vector osl)
Set the list of output segments of this atom (may have more than one).

Parameters:
osl - the list of output segments as a Vector of output segments identifiers
 o getOutSegmentList
 public Vector getOutSegmentList()
Return the list output segments of this atom (may have more than one).

Returns:
the list of output segments as a Vector of output segments identifiers
 o setInSegment
 public void setInSegment(String is)
Set the input segment of this atom (only one).

Parameters:
is - the input segment identifier
 o getInSegment
 public String getInSegment()
Return the input segment of this atom (only one).

Returns:
the input segment identifier
 o toString
 public String toString()
Overrides:
toString in class SimpleNode

All Packages  Class Hierarchy  This Package  Previous  Next  Index