com.hp.lft.sdk.web

Interface TreeViewNode



  • public interface TreeViewNode
    A single node in a Web Tree.
    • Method Summary

      Modifier and TypeMethod and Description
      voidcollapse()
      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.
      java.lang.StringgetPath()
      Returns the full path of this node as a semi-colon delimited string.
    • Method Detail

      • getPath

        java.lang.String getPath()
                          throws GeneralLeanFtException
        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 an error occurs during execution.
      • collapse

        void collapse()
               throws GeneralLeanFtException
        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 an error occurs during execution.
      • expand

        void expand()
             throws GeneralLeanFtException
        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 an error occurs during execution.