All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class ca.carleton.sce.ucmagents.lfmparse.ASTpathComposition

ca.carleton.sce.ucmagents.lfmparse.SimpleNode
   |
   +----ca.carleton.sce.ucmagents.lfmparse.ASTpathComposition

public class ASTpathComposition
extends SimpleNode
ASTpathComposition is a class that is used as a node in the AST in order to contain the connection between paths composed together synchronously or asynchronously. It was built using jjtree 0.3.5.

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

Method Index

 o getEndPoint()
Return the end point (an end bar identifier or an empty segment identifier) in the composition.
 o getPath1()
Return the first path name in the composition.
 o getPath2()
Return the second path name in the composition.
 o getStartPoint()
Return the end point (a start of path identifier or a waiting place identifier) in the composition.
 o isEndBar()
Indicate whether the end point is an end bar identifier (true) or an empty segment identifier (False)
 o isStartPoint()
Indicate whether the start point is a start of path identifier (true) or a waiting place identifier (False)
 o setEndPoint(String)
Set the end point (an end bar identifier or an empty segment identifier) in the composition.
 o setEndType(boolean)
Set whether the end point is an end bar identifier (true) or an empty segment identifier (False)
 o setPath1(String)
Set the first path name in the composition.
 o setPath2(String)
Set the second path name in the composition.
 o setStartPoint(String)
Set the start point (a start of path identifier or a waiting place identifier) in the composition.
 o setStartType(boolean)
Set whether the start point is a start of path identifier (true) or a waiting place identifier (False)
 o toString()

Methods

 o setPath1
 public void setPath1(String p)
Set the first path name in the composition.

Parameters:
p - the path name
 o getPath1
 public String getPath1()
Return the first path name in the composition.

Returns:
the path name
 o setPath2
 public void setPath2(String p)
Set the second path name in the composition.

Parameters:
p - the path name
 o getPath2
 public String getPath2()
Return the second path name in the composition.

Returns:
the path name
 o setEndPoint
 public void setEndPoint(String p)
Set the end point (an end bar identifier or an empty segment identifier) in the composition.

Parameters:
p - the identifier
 o getEndPoint
 public String getEndPoint()
Return the end point (an end bar identifier or an empty segment identifier) in the composition.

Returns:
the end point identifier
 o setStartPoint
 public void setStartPoint(String p)
Set the start point (a start of path identifier or a waiting place identifier) in the composition.

Parameters:
p - the identifier
 o getStartPoint
 public String getStartPoint()
Return the end point (a start of path identifier or a waiting place identifier) in the composition.

Returns:
the start point identifier
 o setEndType
 public void setEndType(boolean b)
Set whether the end point is an end bar identifier (true) or an empty segment identifier (False)

Parameters:
b - true iff the end point is an end bar identifier
 o isEndBar
 public boolean isEndBar()
Indicate whether the end point is an end bar identifier (true) or an empty segment identifier (False)

Returns:
true iff the end point is an end bar identifier
 o setStartType
 public void setStartType(boolean b)
Set whether the start point is a start of path identifier (true) or a waiting place identifier (False)

Parameters:
b - true iff the start point is a start of path identifier
 o isStartPoint
 public boolean isStartPoint()
Indicate whether the start point is a start of path identifier (true) or a waiting place identifier (False)

Returns:
true iff the start point is a start of path identifier
 o toString
 public String toString()
Overrides:
toString in class SimpleNode

All Packages  Class Hierarchy  This Package  Previous  Next  Index