All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class ca.carleton.sce.ucmagents.lfmparse.ASTjoin

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

public class ASTjoin
extends ASTatom
ASTjoin is a class that is used as a node in the AST in order to contain the information related to a join (atom). This atom joins multiple input segments to one output segment. 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 getInSegmentList()
Return the list of input segments of this atom.
 o getOutSegment()
Return the output segment of this atom (only one).
 o setInSegmentList(Vector)
Set the list of input segments of this atom (may have more than one).
 o setOutSegment(String)
Set the output segment of this atom (only one).
 o toString()

Methods

 o setInSegmentList
 public void setInSegmentList(Vector isl)
Set the list of input segments of this atom (may have more than one).

Parameters:
isl - the list of input segments as a Vector of input segments identifiers
 o getInSegmentList
 public Vector getInSegmentList()
Return the list of input segments of this atom.

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

Parameters:
n - the output segment identifier
 o getOutSegment
 public String getOutSegment()
Return the output segment of this atom (only one).

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

All Packages  Class Hierarchy  This Package  Previous  Next  Index