All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class ca.carleton.sce.ucmagents.lfmparse.ASTwaitingPlace

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

public class ASTwaitingPlace
extends ASTatom
ASTwaitingPlace is a class that is used as a node in the AST in order to contain all the information related to a waiting place (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 getInSegmentList()
Return the list of input segments of this atom.
 o getIsaTimer()
Return the timer attribute.
 o getOutSegmentList()
Return the list of output segments of this atom.
 o getPreconditionList()
Return the list of preconditions of this atom.
 o getTriggeringEventList()
Return the list of triggering events associated to this waiting place.
 o setInSegmentList(Vector)
Set the list of input segments of this atom (may have more than one).
 o setIsaTimer(boolean)
Set the timer attribute.
 o setOutSegmentList(Vector)
Set the list of output segments of this atom (may have more than 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 waiting place.
 o toString()

Methods

 o setIsaTimer
 public void setIsaTimer(boolean t)
Set the timer attribute. "true" indicates a time waiting place (timer).

Parameters:
t - the value of the attribute
 o getIsaTimer
 public boolean getIsaTimer()
Return the timer attribute. "true" indicates a time waiting place (timer).

Returns:
the value of the attribute
 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 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 of output segments of this atom.

Returns:
the list of output segments as a Vector of output segments identifiers
 o setTriggeringEventList
 public void setTriggeringEventList(Vector tel)
Set the list of triggering events associated to this waiting place.

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 waiting place.

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