Uses of Interface
com.github.javaparser.utils.SourceRoot.Callback
Packages that use SourceRoot.Callback
-
Uses of SourceRoot.Callback in com.github.javaparser.utils
Methods in com.github.javaparser.utils with parameters of type SourceRoot.CallbackModifier and TypeMethodDescriptionSourceRoot.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.parse(String startPackage, SourceRoot.Callback callback)
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.parse(String startPackage, String filename, SourceRoot.Callback callback)
Parses the provided .java file and passes it to the callback.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.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.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.