| |
|
| org.cougaar.mlm.debug.ui.UITreeNode org.cougaar.mlm.debug.ui.UIScheduleNode
UIScheduleNode | public class UIScheduleNode extends UITreeNode (Code) | | A tree node for a Schedule.
Overrides the UITreeNode loadChildren, toString and isLeaf
methods to dynamically display the Schedule which has no children.
|
Method Summary | |
public boolean | isLeaf() The Schedule is a leaf. | public void | loadChildren() This shouldn't be called because this is a leaf. | public String | toString() Return representation of a Schedule in a tree:
The startLocation and endLocation are displayed only if they are
specified in the schedule. |
UIScheduleNode | public UIScheduleNode(Schedule schedule, String prefix)(Code) | | Create a tree node for the schedule.
Parameters: schedule - schedule for which to create a tree node |
isLeaf | public boolean isLeaf()(Code) | | The Schedule 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 Schedule in a tree:
The startLocation and endLocation are displayed only if they are
specified in the schedule.
From (startLocation) (startDate) to (endLocation) (endDate). |
|
|
|