Package org.netbeans.api.project.ProjectManager

Examples of org.netbeans.api.project.ProjectManager.Result


public class CoffeeScriptProjectFactory implements ProjectFactory2 {

    public final static String PROJECT_CONFIG_FILE = "Cakefile";

    public Result isProject2(FileObject projectDirectory) {
        return isProject(projectDirectory) ? new Result(null) : null;
    }
View Full Code Here

TOP

Related Classes of org.netbeans.api.project.ProjectManager.Result

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.