Java JTree Expand expandAllNodes(JTree tree)

Here you can find the source of expandAllNodes(JTree tree)

Description

expand All Nodes

License

Open Source License

Declaration

public static void expandAllNodes(JTree tree) 

Method Source Code

//package com.java2s;
/*//from  ww w .j  a  va 2  s .  c o m
 *     GENESE - Gerador de N?meros e Estat?sticas para Mega-Sena
 *     Copyright (C)  2016  Rafael Teixeira
 *     rafaelfst@live.com
 *
 *     GENESE ? um software livre: voc? pode redistribu?-lo e/ou modific?-lo
 *     dentro dos termos da Licen?a P?blica Geral GNU como publicada pela
 *     Funda??o do Software Livre (FSF), na vers?o 3 da Licen?a, ou
 *     (na sua opini?o) qualquer vers?o posterior.
 *
 *     Este programa ? distribu?do na esperan?a de que possa ser ?til,
 *     mas SEM NENHUMA GARANTIA; sem uma garantia impl?cita de ADEQUA??O
 *     a qualquer MERCADO ou APLICA??O EM PARTICULAR. Veja a
 *     Licen?a P?blica Geral GNU para maiores detalhes.
 *
 *     Voc? deve ter recebido uma c?pia da Licen?a P?blica Geral GNU junto
 *     com este programa. Se n?o, veja <http://www.gnu.org/licenses/>.
 */

import javax.swing.JTree;

public class Main {
    public static void expandAllNodes(JTree tree) {
        for (int i = 0; i < tree.getRowCount(); i++)
            tree.expandRow(i);
    }
}

Related

  1. expandAll(JTree tree)
  2. expandAll(JTree tree, boolean expand)
  3. expandAll(JTree tree, boolean expand)
  4. expandAllNode(JTree tree, TreePath parent)
  5. expandAllNodes(final JTree tree)
  6. expandAllNodes(JTree tree)
  7. expandAllNodes(JTree tree, int startingIndex, int rowCount)
  8. expandAllNodes(JTree tree, int startingIndex, int rowCount)
  9. expandAllNodes(JTree tree, TreeNode node)