Java JTree Path doNode(JTree tree, TreeNode parentNode, TreePath parentPath)

Here you can find the source of doNode(JTree tree, TreeNode parentNode, TreePath parentPath)

Description

do Node

License

Open Source License

Declaration

private static void doNode(JTree tree, TreeNode parentNode, TreePath parentPath) 

Method Source Code


//package com.java2s;
/*//from  w  ww  . j av  a 2 s .com
 * Copyright 2000-2003 Oracle, Inc. This software was developed in conjunction with the National Cancer Institute, and so to the extent government employees are co-authors, any rights in such works shall be subject to Title 17 of the United States Code, section 105.
 *
 Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
 *
 * 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the disclaimer of Article 3, below. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
 *
 * 2. The end-user documentation included with the redistribution, if any, must include the following acknowledgment:
 *
 * "This product includes software developed by Oracle, Inc. and the National Cancer Institute."
 *
 * If no such end-user documentation is to be included, this acknowledgment shall appear in the software itself, wherever such third-party acknowledgments normally appear.
 *
 * 3. The names "The National Cancer Institute", "NCI" and "Oracle" must not be used to endorse or promote products derived from this software.
 *
 * 4. This license does not authorize the incorporation of this software into any proprietary programs. This license does not authorize the recipient to use any trademarks owned by either NCI or Oracle, Inc.
 *
 * 5. THIS SOFTWARE IS PROVIDED "AS IS," AND ANY EXPRESSED OR IMPLIED WARRANTIES, (INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE) ARE DISCLAIMED. IN NO EVENT SHALL THE NATIONAL CANCER INSTITUTE, ORACLE, OR THEIR AFFILIATES BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE 
 */

import java.util.Enumeration;
import javax.swing.tree.*;
import javax.swing.*;

public class Main {
    private static void doNode(JTree tree, TreeNode parentNode, TreePath parentPath) {
        if (parentNode.getChildCount() > 0) {
            for (Enumeration e = parentNode.children(); e.hasMoreElements();) {
                TreeNode childNode = (TreeNode) e.nextElement();
                TreePath path = parentPath.pathByAddingChild(childNode);
                tree.expandPath(path);

                doNode(tree, childNode, path);
            }
        }
    }
}

Related

  1. checkNode(TreePath path)
  2. createTreePath(TreeNode treeNode)
  3. createTreePathFromTreeNode(TreeNode treeNode)
  4. find2(JTree tree, TreePath parent, Object[] nodes, int depth, boolean byName)
  5. findOrAddNode(JTree tree, TreePath parent, String packageName)
  6. findTreePath(TreePath path, TreeNode node, String pathName)
  7. findV2MetaTreeNode( String nodeXmlPath)