Class ParserCollectionStrategy

java.lang.Object
com.github.javaparser.utils.ParserCollectionStrategy
All Implemented Interfaces:
CollectionStrategy

public class ParserCollectionStrategy extends Object implements CollectionStrategy
A brute force CollectionStrategy for discovering a project structure. It will search through the given project root path for Java files, look at their package declarations, and figure out the root directories for those files. No project definition files like pom.xml or build.gradle are used. This strategy is crude, but can work for many cases. Note that any build artifacts will also be detected: jar files in target directories and so on. Note that if your project has a module-info.java file, ensure that you have set the language level to at least 9.