All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class ca.carleton.sce.ucmagents.lfmparse.ASTstartOfPath

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

public class ASTstartOfPath
extends ASTatom
ASTstartOfPath is a class that is used as a node in the AST in order to contain all the information related to a start of path (atom). 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 getOutSegment()
Return the output segment of this atom (only one).
 o getPreconditionList()
Return the list of preconditions of this atom.
 o getTriggeringEventList()
Return the list of triggering events associated to this start of path.
 o setOutSegment(String)
Set the output segment of this atom (only one).
 o setPreconditionList(Vector)
Set the list of preconditions of this atom (may have more than one).
 o setTriggeringEventList(Vector)
Set the list of triggering events associated to this start of path.
 o toString()

Methods

 o setOutSegment
 public void setOutSegment(String n)
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 setTriggeringEventList
 public void setTriggeringEventList(Vector tel)
Set the list of triggering events associated to this start of path.

Parameters:
tel - the list of triggering events as a Vector of events (StringPair of [label, description])
See Also:
StringPair
 o getTriggeringEventList
 public Vector getTriggeringEventList()
Return the list of triggering events associated to this start of path.

Returns:
the list of triggering events as a Vector of events (StringPair of [label, description])
See Also:
StringPair
 o setPreconditionList
 public void setPreconditionList(Vector pl)
Set the list of preconditions of this atom (may have more than one).

Parameters:
pl - the list of preconditions as a Vector of conditions (StringPair of [label, description])
See Also:
StringPair
 o getPreconditionList
 public Vector getPreconditionList()
Return the list of preconditions of this atom.

Returns:
the list of preconditions as a Vector of conditions (StringPair of [label, description])
See Also:
StringPair
 o toString
 public String toString()
Overrides:
toString in class SimpleNode

All Packages  Class Hierarchy  This Package  Previous  Next  Index