Package net.sickill.off.common

Examples of net.sickill.off.common.ProjectFile


   
    // helpers

    private ProjectFile findFileInResults(String name) {
        for(int i=0; i<model.getSize(); i++) {
            ProjectFile file = ((OffListElement)model.getElementAt(i)).getFile();
            if (file.getName().equals(name))
                return file;
        }
        return null;
    }
View Full Code Here


                    Thread.sleep(3000);
                } catch (InterruptedException ex) {
                    Logger.getLogger(JEditProjectViewerProject.class.getName()).log(Level.SEVERE, null, ex);
                }
                for (Object node : project.getOpenableNodes()) {
                    ProjectFile pf = new JEditProjectViewerFile(parent, (VPTFile)node);
                    model.addFile(pf);
                }
                model.setIndexing(false);
                model.refilter();
            } else {
View Full Code Here

TOP

Related Classes of net.sickill.off.common.ProjectFile

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.