|
Java Swing Tree. Extends JavaObject.
Behavior Pattern: JavaSwingObjectTreeBehavior
Property Summary
Property
|
Description
|
Getter
|
Setter
|
ChildrenCount
|
Number of children of the selected node or a node specified by the input parameters.
|
GetChildrenCount
|
|
Expanded
|
Expanded state of the selected node or a node specified by the input parameters.
|
GetExpanded
|
|
IndexPath
|
Index path of the specified or selected tree node i.e.
|
GetIndexPath
|
|
NodeText
|
Text of the selected node or a node specified by the input parameters.
|
GetNodeText
|
|
Selected
|
Selected state of the selected node or a node specified by the input parameters
|
GetSelected
|
|
Action Summary
Action
|
Description
|
DoClickNode
|
Clicks specific node in the tree.
|
DoCollapse
|
Collapses specific node in the tree.
|
DoExpand
|
Expands specific node in the tree.
|
Property Detail
ChildrenCount
Number of children of the selected node or a node specified by the input parameters.
Accessors: GetChildrenCount
Expanded
Expanded state of the selected node or a node specified by the input parameters.
Accessors: GetExpanded
IndexPath
Index path of the specified or selected tree node i.e. string in form '0;5;2;1;6', 'false' if fails
Accessors: GetIndexPath
NodeText
Text of the selected node or a node specified by the input parameters.
Accessors: GetNodeText
Selected
Selected state of the selected node or a node specified by the input parameters
Accessors: GetSelected
Action Detail
DoClickNode(path, separator, pathType, clickType, xOffset, yOffset)
Clicks specific node in the tree.
Parameters:
Name
|
Type
|
Description
|
path
|
string
|
Path of the node
|
separator
|
string
|
Separator
Optional, Default: ;.
|
pathType
|
string
|
Path type. Can be one of 'name', 'id' or 'index'.
Optional, Default: name.
|
clickType
|
string
|
Type of click, can be one of "L" - left click, "LD" - double left click, "R" - right click, "RD" - double right click, "M" - middle click, "MD" - double middle click, "N" - don't click
Optional, Default: L.
|
xOffset
|
number
|
X offset to click within node. Default is a center.
Optional.
|
yOffset
|
number
|
Y offset to click within node. Default is a center.
Optional.
|
Returns:
'true' if success, 'false' otherwise.
DoCollapse(path, separator, pathType)
Collapses specific node in the tree.
Parameters:
Name
|
Type
|
Description
|
path
|
string
|
Path of the node
|
separator
|
string
|
Separator
Optional, Default: ;.
|
pathType
|
string
|
Path type. Can be one of 'name', 'id' or 'index'.
Optional, Default: name.
|
Returns:
'true' if success, 'false' otherwise.
DoExpand(path, separator, pathType)
Expands specific node in the tree.
Parameters:
Name
|
Type
|
Description
|
path
|
string
|
Path of the node
|
separator
|
string
|
Separator
Optional, Default: ;.
|
pathType
|
string
|
Path type. Can be one of 'name', 'id' or 'index'.
Optional, Default: name.
|
Returns:
'true' if success, 'false' otherwise.
|