Package com.hp.lft.sdk.web
Interface TreeViewNode
public interface TreeViewNode
A single node in a Web Tree.
- 
Method SummaryModifier 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- 
getPathReturns 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
 
- 
collapseCollapses 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
 
- 
expandExpands 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
 
 
-