com.hp.lft.sdk.wpf

Interface TreeViewNode

    • Method Summary

      Modifier and TypeMethod and Description
      voidcollapse()
      Hides this node's sub-nodes in the expanded tree-view control.
      voidexpand()
      Displays this node's hidden sub-nodes in the tree-view control.
      voidexpandAll()
      Expands this node and all of the nodes below it in the tree-view control.
      java.lang.StringgetFirstChildPath()
      Returns the full path of this node's first child node as a semicolon delimited string.
      java.lang.StringgetNextSiblingPath()
      Returns the full path of this node's next sibling node as a semicolon delimited string.
      java.lang.StringgetParentPath()
      Returns the full path of this node's parent node as a semicolon delimited string.
      java.lang.StringgetPath()
      Returns the full path of this node as a semicolon delimited string.
      intgetState()
      Returns the state image index of this node.
      java.lang.StringgetText()
      Returns the text of this node, or an empty string ("") if the node does not contain any text.
      booleanhasChildren()
      Indicates whether this node has children.
      booleanisExpanded()
      Indicates whether this node is expanded.
      booleanisSelected()
      Indicates whether this node is selected.
    • Method Detail

      • getFirstChildPath

        java.lang.String getFirstChildPath()
                                    throws GeneralLeanFtException
        Returns the full path of this node's first child node as a semicolon delimited string.
        Returns:
        the full path of this node's first child node
        Throws:
        GeneralLeanFtException - if an error occurs during execution.
      • getNextSiblingPath

        java.lang.String getNextSiblingPath()
                                     throws GeneralLeanFtException
        Returns the full path of this node's next sibling node as a semicolon delimited string.
        Returns:
        the full path of this node's next sibling node
        Throws:
        GeneralLeanFtException - if an error occurs during execution.
      • getParentPath

        java.lang.String getParentPath()
                                throws GeneralLeanFtException
        Returns the full path of this node's parent node as a semicolon delimited string.
        Returns:
        the full path of this node's parent node
        Throws:
        GeneralLeanFtException - if an error occurs during execution.
      • getPath

        java.lang.String getPath()
                          throws GeneralLeanFtException
        Returns the full path of this node as a semicolon delimited string.
        Returns:
        the full path of this node
        Throws:
        GeneralLeanFtException - if an error occurs during execution.
      • getText

        java.lang.String getText()
                          throws GeneralLeanFtException
        Returns the text of this node, or an empty string ("") if the node does not contain any text.
        Returns:
        the text
        Throws:
        GeneralLeanFtException - if an error occurs during execution.