Package net.jangaroo.jooc.api
Interface CompilationResult
-
public interface CompilationResultThe result of a Jooc compilation run.
-
-
Field Summary
Fields Modifier and Type Field Description static intRESULT_CODE_COMPILATION_FAILEDstatic intRESULT_CODE_ILLEGAL_OPTION_VALUEstatic intRESULT_CODE_INTERNAL_COMPILER_ERRORstatic intRESULT_CODE_MISSING_OPTION_ARGUMENTstatic intRESULT_CODE_OKstatic intRESULT_CODE_UNRECOGNIZED_OPTION
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Map<File,File>getOutputFileMap()Return a map from source (input) files to successfully generated output files.intgetResultCode()Return the result code of the last compilation run.
-
-
-
Field Detail
-
RESULT_CODE_OK
static final int RESULT_CODE_OK
- See Also:
- Constant Field Values
-
RESULT_CODE_COMPILATION_FAILED
static final int RESULT_CODE_COMPILATION_FAILED
- See Also:
- Constant Field Values
-
RESULT_CODE_INTERNAL_COMPILER_ERROR
static final int RESULT_CODE_INTERNAL_COMPILER_ERROR
- See Also:
- Constant Field Values
-
RESULT_CODE_UNRECOGNIZED_OPTION
static final int RESULT_CODE_UNRECOGNIZED_OPTION
- See Also:
- Constant Field Values
-
RESULT_CODE_MISSING_OPTION_ARGUMENT
static final int RESULT_CODE_MISSING_OPTION_ARGUMENT
- See Also:
- Constant Field Values
-
RESULT_CODE_ILLEGAL_OPTION_VALUE
static final int RESULT_CODE_ILLEGAL_OPTION_VALUE
- See Also:
- Constant Field Values
-
-