public static class Compiler.CompileResult
extends java.lang.Object
implements java.io.Serializable
| Modifier and Type | Field and Description |
|---|---|
java.lang.String |
compileLog
The compiler log.
|
@Nullable java.lang.Throwable |
javacCrash
Contains a compiler crash exception, if the compiler crashed.
|
java.util.Map<java.lang.String,byte[]> |
output
The compiler output for the compilation unit.
|
boolean |
success
If the operation was a success.
|
| Constructor and Description |
|---|
CompileResult(java.util.Map<java.lang.String,byte[]> output,
boolean success,
java.lang.String compileLog,
@Nullable java.lang.Throwable javacCrash) |
public final java.util.Map<java.lang.String,byte[]> output
Each entry is in the form of relative paths, using forward slashes. E.g: my/package/MyClass.class
public final boolean success
public final java.lang.String compileLog
@Nullable public final @Nullable java.lang.Throwable javacCrash