All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class ca.carleton.sce.ucmagents.lfmparse.ASTpool

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

public class ASTpool
extends SimpleNode
ASTpool is a class that is used as a node in the AST in order to contain all the information related to a pool. It was built using jjtree 0.3.5.

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

Method Index

 o getCompType()
Return the type of the components associated to this pool.
 o getPlugins()
Return the list of plugins (models) assigned to this pool.
 o getResponsibilities()
Return the list of responsibilities assigned to this pool.
 o getType()
Return the pool type.
 o isActual()
Return the actual attribute.
 o isAnchored()
Return the anchored attribute.
 o setActual(boolean)
Set the actual attribute.
 o setAnchored(boolean)
Set the anchored attribute.
 o setCompType(String)
Set the component type (a String) associated to this pool.
 o setPlugins(Vector)
Set the list of plugins (models) assigned to this pool.
 o setResponsibilities(Vector)
Set the list of responsibilities assigned to this pool.
 o setType(int)
Set the pool type (a String).
 o toString()

Methods

 o setCompType
 public void setCompType(String n)
Set the component type (a String) associated to this pool.

Parameters:
n - the component type.
 o getCompType
 public String getCompType()
Return the type of the components associated to this pool.

Returns:
the type of the components
 o setResponsibilities
 public void setResponsibilities(Vector resp)
Set the list of responsibilities assigned to this pool.

Parameters:
resp - the list of responsibilities as a Vector of responsibility names
 o getResponsibilities
 public Vector getResponsibilities()
Return the list of responsibilities assigned to this pool.

Returns:
the list of responsibilities as a Vector of responsibility names
 o setPlugins
 public void setPlugins(Vector p)
Set the list of plugins (models) assigned to this pool.

Parameters:
p - the list of plugins as a Vector of model names
 o getPlugins
 public Vector getPlugins()
Return the list of plugins (models) assigned to this pool.

Returns:
the list of plugins as a Vector of model names
 o setActual
 public void setActual(boolean b)
Set the actual attribute.

Parameters:
b - the value of the attribute (true for actual, false for formal)
 o isActual
 public boolean isActual()
Return the actual attribute.

Returns:
the value of the attribute (true for actual, false for formal)
 o setAnchored
 public void setAnchored(boolean b)
Set the anchored attribute.

Parameters:
b - the value of the attribute
 o isAnchored
 public boolean isAnchored()
Return the anchored attribute.

Returns:
the value of the attribute
 o setType
 public void setType(int t)
Set the pool type (a String).

Parameters:
t - the pool type.
 o getType
 public int getType()
Return the pool type.

Returns:
the pool type
 o toString
 public String toString()
Overrides:
toString in class SimpleNode

All Packages  Class Hierarchy  This Package  Previous  Next  Index