Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Open Source License 

import javax.swing.JTree;

public class Main {
    /**
     * Stolen from http://stackoverflow.com/a/19935987/5620200
     * @param tree
     * @param startingIndex
     * @param rowCount
     */
    public static void expand(JTree tree, int startingIndex, int rowCount) {
        for (int i = startingIndex; i < rowCount; ++i) {
            tree.expandRow(i);
        }

        if (tree.getRowCount() != rowCount) {
            expand(tree, rowCount, tree.getRowCount());
        }
    }
}