name.remal.gradle_plugins.toolkit.classpath.ClassProcessor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of classpath Show documentation
Show all versions of classpath Show documentation
Remal Gradle plugins: toolkit: classpath
package name.remal.gradle_plugins.toolkit.classpath;
import java.io.File;
@FunctionalInterface
public interface ClassProcessor {
void process(
File classpathFile,
String className,
ResourceInputStreamOpener inputStreamOpener
) throws Throwable;
}