Package org.netbeans.spi.scala.platform

Examples of org.netbeans.spi.scala.platform.PlatformInstall


            File file = this.getSelectedFile();
            if (file != null) {
                file = FileUtil.normalizeFile(file);
                FileObject fo = FileUtil.toFileObject (FileUtil.normalizeFile(file));
                if (fo != null) {                   
                    PlatformInstall install = this.platformFileView.getPlatformInstall();                   
                    if (install != null && install.accept(fo)) {
//                        this.accessory.setType (install.getDisplayName());
                        this.iterator = install.createIterator(fo);
                    }
                }
            }
            this.firer.cs.fireChange();
        }
View Full Code Here

TOP

Related Classes of org.netbeans.spi.scala.platform.PlatformInstall

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.