package xsbti.compile; /** Configures a single compilation of a single set of sources.*/ public interface Inputs { /** The Scala and Java compilers to use for compilation.*/ Compilers compilers(); /** Standard compilation options, such as the sources and classpath to use. */ Options options(); /** Configures incremental compilation.*/ Setup setup(); }