All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.kemitix.dependency.digraph.maven.plugin.SourceFileVisitor Maven / Gradle / Ivy

There is a newer version: 0.9.1
Show newest version
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