Uses of Class
com.github.javaparser.JavaParser
-
Packages that use JavaParser Package Description com.github.javaparser.ast com.github.javaparser.utils -
-
Uses of JavaParser in com.github.javaparser.ast
Methods in com.github.javaparser.ast with parameters of type JavaParser Modifier and Type Method Description ParseResult<CompilationUnit>
CompilationUnit.Storage. reparse(JavaParser javaParser)
-
Uses of JavaParser in com.github.javaparser.utils
Methods in com.github.javaparser.utils that return JavaParser Modifier and Type Method Description JavaParser
SourceRoot. getJavaParser()
JavaParser
SourceZip. getJavaParser()
Get the parser used for parsing.Methods in com.github.javaparser.utils with parameters of type JavaParser Modifier and Type Method Description SourceRoot
SourceRoot. parse(String startPackage, JavaParser javaParser, SourceRoot.Callback callback)
Tries to parse all .java files in a package recursively and passes them one by one to the callback.SourceRoot
SourceRoot. parseParallelized(String startPackage, JavaParser javaParser, SourceRoot.Callback callback)
Tries to parse all .java files in a package recursively using multiple threads, and passes them one by one to the callback.SourceRoot
SourceRoot. setJavaParser(JavaParser javaParser)
Set the parser that is used for parsing by default.SourceZip
SourceZip. setJavaParser(JavaParser javaParser)
Set the parser that is used for parsing.ParseResult<CompilationUnit>
SourceRoot. tryToParse(String pkg, String filename, JavaParser javaParser)
Tries to parse a .java files under the source root and returns the ParseResult.
-