Examples of NbListedDir


Examples of org.netbeans.gradle.project.java.model.NbListedDir

                for (File sourceRoot: sourceGroup.getSourceRoots()) {
                    File parent = sourceRoot.getParentFile();
                    if (parent != null) {
                        File webapp = new File(parent, "webapp");
                        if (webapp.isDirectory()) {
                            return new NbListedDir(NbStrings.getWebPages(), webapp);
                        }
                    }
                }
            }
        }
View Full Code Here

Examples of org.netbeans.gradle.project.java.model.NbListedDir

    }

    private static List<NbListedDir> lookupListedDirs(Collection<JavaSourceSet> sources) {
        List<NbListedDir> result = new LinkedList<>();

        NbListedDir webAppDir = findWebAppDir(sources);
        if (webAppDir != null) {
            result.add(webAppDir);
        }

        return result;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.