| |
|
| org.cougaar.mlm.debug.ui.UITreeNode org.cougaar.mlm.debug.ui.UIScheduleElementNode
UIScheduleElementNode | public class UIScheduleElementNode extends UITreeNode (Code) | | A tree node for a ScheduleElement.
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 ScheduleElement in a tree:
The startLocation and endLocation are displayed only if they are
specified in the scheduleelement (LocationRangeScheduleElement). |
UIScheduleElementNode | public UIScheduleElementNode(ScheduleElement scheduleelement, String prefix)(Code) | | Create a tree node for the schedule element.
Parameters: scheduleelement - scheduleelement 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 ScheduleElement in a tree:
The startLocation and endLocation are displayed only if they are
specified in the scheduleelement (LocationRangeScheduleElement).
From (startLocation) (startDate) to (endLocation) (endDate). |
|
|
|