
xsbti.compile.JavaTools Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of compiler-interface Show documentation
Show all versions of compiler-interface Show documentation
Incremental compiler of Scala
package xsbti.compile;
import java.io.File;
import xsbti.Logger;
import xsbti.Reporter;
/**
* An interface to the toolchain of Java.
*
* Specifically, access to run javadoc + javac.
*/
public interface JavaTools {
/** The raw interface of the java compiler for direct access. */
JavaCompiler javac();
/** The raw interface of the javadoc for direct access. */
Javadoc javadoc();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy