Module  java.desktop
软件包  javax.swing.tree

Interface TreeNode

    • 方法详细信息

      • getChildAt

        TreeNode getChildAt​(int childIndex)
        返回小孩 TreeNode ,索引号为 childIndex
        参数
        childIndex - 小孩的索引
        结果
        给定索引的子节点
      • getChildCount

        int getChildCount​()
        返回接收器包含的子数 TreeNode
        结果
        接收器包含的孩子数量
      • getParent

        TreeNode getParent​()
        返回接收者的父母 TreeNode
        结果
        接收者的父母
      • getIndex

        int getIndex​(TreeNode node)
        返回接收儿童中的node的索引。 如果接收方不包含node ,则返回-1。
        参数
        node - 要被loked的节点
        结果
        指定节点的索引
      • getAllowsChildren

        boolean getAllowsChildren​()
        如果接收器允许孩子,则返回true。
        结果
        接收器是否允许儿童
      • isLeaf

        boolean isLeaf​()
        如果接收者是叶子,则返回true。
        结果
        接收者是否是叶
      • children

        Enumeration<? extends TreeNode> children​()
        作为一个 Enumeration返回接收者的 Enumeration
        结果
        接收者的孩子为 Enumeration