Package org.netbeans.api.java.source

Examples of org.netbeans.api.java.source.ClasspathInfo


        return ScalaSourceUtil.getMainClassesAsJavaCollection(fo);
    }

       
    public static boolean isMainClass (final String className, ClassPath bootPath, ClassPath compilePath, ClassPath sourcePath) {
        ClasspathInfo cpInfo = ClasspathInfo.create(bootPath, compilePath, sourcePath);
        /** @Todo */
        return true;
        //return SourceUtils.isMainClass(className, cpInfo);
    }
View Full Code Here

TOP

Related Classes of org.netbeans.api.java.source.ClasspathInfo

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.