
xsbti.compile.DefinesClass 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;
/**
* Determines if a classpath entry contains a class.
*
* The corresponding classpath entry is not exposed by this interface. It's tied
* to it by a specific class that implements this interface.
*/
public interface DefinesClass {
/**
* Returns true if the classpath entry contains the requested class.
*/
boolean apply(String className);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy