Home | History | Annotate | Download | only in utils

Lines Matching refs:Path

30 import java.nio.file.Path;

49 private final Path zipPath;
56 * @param zipPath The absolute path of ZIP file to parse.
58 public SourceZip(Path zipPath) {
66 * @param zipPath The absolute path of ZIP file to parse.
69 public SourceZip(Path zipPath, ParserConfiguration configuration) {
78 * Tries to parse all '.java' files in the ZIP located at this <i>SourceZip</i>'s path and returns the parse
81 * @return A list of path-compilation unit pairs.
85 public List<Pair<Path, ParseResult<CompilationUnit>>> parse() throws IOException {
87 List<Pair<Path, ParseResult<CompilationUnit>>> results = new ArrayList<>();
88 parse((path, result) -> results.add(new Pair<>(path, result)));
93 * Tries to parse all '.java' files in the ZIP located at this <i>SourceZip</i>'s path and returns the parse
96 * @return A list of path-compilation unit pairs.
125 * @param relativeZipEntryPath The relative path of the entry in the ZIP file that was parsed.
128 void process(Path relativeZipEntryPath, ParseResult<CompilationUnit> result);
132 * Get the path of the ZIP file to be parsed.
134 * @return The absolute path of this ZIP file.
136 public Path getZipPath() {