| |
|
| org.cougaar.mlm.debug.ui.UITreeNode org.cougaar.mlm.debug.ui.UIStringNode
UIStringNode | public class UIStringNode extends UITreeNode (Code) | | A tree node for a String.
Overrides the UITreeNode loadChildren, toString and isLeaf.
|
Method Summary | |
public boolean | isLeaf() The String is a leaf. | public void | loadChildren() This shouldn't be called because this is a leaf. | public String | toString() Return representation of a String in a tree. |
UIStringNode | public UIStringNode(String s)(Code) | | Create a tree node for the string.
Parameters: s - String for which to create tree node |
isLeaf | public boolean isLeaf()(Code) | | The String 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 String in a tree.
String s |
|
|
|