net.kemitix.dependency.digraph.maven.plugin.SourceFileProvider 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.util.List;
/**
* Interface for processing a list of directories.
*
* @author pcampbell
*/
interface SourceFileProvider {
/**
* Process the list of directories and return the list of java files.
*
* @param directories the directories to process
*/
List process(List directories);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy