Package scalaExec.scalaLab

Examples of scalaExec.scalaLab.FileTreeExplorer


        if (selectedNode.getDepth() == 0)  { 
          selectedValue = (String) selectedNode.getUserObject();
                File testExists = new File(selectedValue);
                if (testExists.exists() && testExists.isDirectory()) {
                try {
                FileTreeExplorer ftree = new FileTreeExplorer(selectedValue);
                GlobalValues.currentFileExplorer = ftree;
                JFrame treeFrame = new JFrame("Files under the directory "+selectedValue);
                treeFrame.add(new JScrollPane(ftree.pathsTree));
                treeFrame.setSize(600, 500);
                treeFrame.setVisible(true);
View Full Code Here

TOP

Related Classes of scalaExec.scalaLab.FileTreeExplorer

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.