Package com.hp.lft.sdk.web
Interface TreeViewNode
public interface TreeViewNode
A single node in a Web Tree.
-
Method Summary
Modifier and TypeMethodDescriptionvoidcollapse()Collapses this tree node.
There may be a slight delay when using this method due to the animation of the collapse operation.voidexpand()Expands this tree node.
There may be a slight delay when using this method due to the animation of the expand operation.getPath()Returns the full path of this node as a semi-colon delimited string.
-
Method Details
-
getPath
Returns the full path of this node as a semi-colon delimited string.- Returns:
- the full path of this node as a semi-colon delimited string.
- Throws:
GeneralLeanFtException- if error occurs during execution
-
collapse
Collapses this tree node.
There may be a slight delay when using this method due to the animation of the collapse operation. You should add a Sleep statement after this step to pause for the animation.- Throws:
GeneralLeanFtException- if error occurs during execution
-
expand
Expands this tree node.
There may be a slight delay when using this method due to the animation of the expand operation. You should add a Sleep statement after this step to pause for the animation.- Throws:
GeneralLeanFtException- if error occurs during execution
-