org.qbicc.main.ClassPathResolver Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qbicc-main Show documentation
Show all versions of qbicc-main Show documentation
The main entry point for Qbicc
The newest version!
package org.qbicc.main;
import java.io.IOException;
import java.util.List;
import java.util.function.Consumer;
import org.qbicc.context.DiagnosticContext;
import org.qbicc.driver.ClassPathItem;
/**
* A class path resolver.
*/
public interface ClassPathResolver {
void resolveClassPath(DiagnosticContext ctxt, Consumer classPathItemConsumer, final List paths, Runtime.Version version) throws IOException;
}