Package com.github.javaparser.utils
Interface SourceRoot.Callback
-
- Enclosing class:
- SourceRoot
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public static interface SourceRoot.Callback
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
SourceRoot.Callback.Result
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SourceRoot.Callback.Result
process(Path localPath, Path absolutePath, ParseResult<CompilationUnit> result)
-
-
-
Method Detail
-
process
SourceRoot.Callback.Result process(Path localPath, Path absolutePath, ParseResult<CompilationUnit> result)
- Parameters:
localPath
- the path to the file that was parsed, relative to the source root path.absolutePath
- the absolute path to the file that was parsed.result
- the result of parsing the file.
-
-