mirror of https://github.com/sbt/sbt.git
9 lines
160 B
Java
9 lines
160 B
Java
|
|
package xsbti.compile;
|
||
|
|
|
||
|
|
public interface Compilers<ScalaCompiler>
|
||
|
|
{
|
||
|
|
JavaCompiler javac();
|
||
|
|
// should be cached by client if desired
|
||
|
|
ScalaCompiler scalac();
|
||
|
|
}
|