| |
|
| org.cougaar.mlm.debug.ui.UITreeNode org.cougaar.mlm.debug.ui.UIConstraintNode
UIConstraintNode | public class UIConstraintNode extends UITreeNode (Code) | | A tree node for a Constraint.
Overrides the UITreeNode loadChildren, toString and isLeaf
methods to dynamically display the Constraint which has no children.
|
Method Summary | |
public boolean | isLeaf() The constraint is a leaf. | public void | loadChildren() This shouldn't be called because this is a leaf. | public String | toString() Return representation of a Constraint in a tree. |
UIConstraintNode | public UIConstraintNode(Constraint constraint)(Code) | | Create a tree node for the constraint.
Parameters: constraint - the constraint for which to create a tree node |
isLeaf | public boolean isLeaf()(Code) | | The constraint is a leaf.
true |
loadChildren | public void loadChildren()(Code) | | This shouldn't be called because this is a leaf.
|
toString | public String toString()(Code) | | Return representation of a Constraint in a tree.
for example: initiate Task1 5 msecs after complete Task2 |
|
|
|