Package | Description |
---|---|
com.github.javaparser.utils |
Modifier and Type | Method and Description |
---|---|
SourceRoot |
SourceRoot.parse(String startPackage,
ParserConfiguration configuration,
SourceRoot.Callback callback)
Tries to parse all .java files in a package recursively and passes them one by one to the callback.
|
SourceRoot |
SourceRoot.parse(String startPackage,
SourceRoot.Callback callback) |
SourceRoot |
SourceRoot.parse(String startPackage,
String filename,
ParserConfiguration configuration,
SourceRoot.Callback callback)
Locates the .java file with the provided package and file name, parses it and passes it to the
callback.
|
SourceRoot |
SourceRoot.parse(String startPackage,
String filename,
SourceRoot.Callback callback)
Parses the provided .java file and passes it to the callback.
|
SourceRoot |
SourceRoot.parseParallelized(SourceRoot.Callback callback)
Tries to parse all .java files recursively using multiple threads, and passes them one by one to the callback.
|
SourceRoot |
SourceRoot.parseParallelized(String startPackage,
ParserConfiguration configuration,
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.parseParallelized(String startPackage,
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.
|
Copyright © 2007–2021. All rights reserved.