net.kemitix.dependency.digraph.maven.plugin.SourceFileVisitor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of digraph-dependency-maven-plugin Show documentation
Show all versions of digraph-dependency-maven-plugin Show documentation
Generates a DOT Digraph of dependencies between packages within a project
package net.kemitix.dependency.digraph.maven.plugin;
import java.io.File;
import java.nio.file.FileVisitor;
import java.nio.file.Path;
import java.util.List;
/**
* File visitor to discover Java source files.
*
* @author pcampbell
*/
interface SourceFileVisitor extends FileVisitor {
/**
* Returns the list of Java source files found.
*
* @return the list of Java source files
*/
List getJavaFiles();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy