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 JavaParserSourceRoot. getJavaParser()JavaParserSourceZip. getJavaParser()Get the parser used for parsing.Methods in com.github.javaparser.utils with parameters of type JavaParser Modifier and Type Method Description SourceRootSourceRoot. 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.SourceRootSourceRoot. 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.SourceRootSourceRoot. setJavaParser(JavaParser javaParser)Set the parser that is used for parsing by default.SourceZipSourceZip. 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.
-