Package org.apache.commons.jci.compilers
Class CompilationResult
- java.lang.Object
-
- org.apache.commons.jci.compilers.CompilationResult
-
public final class CompilationResult extends java.lang.ObjectA CompilationResult represents the result of a compilation. It includes errors (which failed the compilation) or warnings (that can be ignored and do not affect the creation of the class files)
-
-
Field Summary
Fields Modifier and Type Field Description private CompilationProblem[]errorsprivate CompilationProblem[]warnings
-
Constructor Summary
Constructors Constructor Description CompilationResult(CompilationProblem[] pProblems)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CompilationProblem[]getErrors()CompilationProblem[]getWarnings()
-
-
-
Field Detail
-
errors
private final CompilationProblem[] errors
-
warnings
private final CompilationProblem[] warnings
-
-
Constructor Detail
-
CompilationResult
public CompilationResult(CompilationProblem[] pProblems)
-
-
Method Detail
-
getErrors
public CompilationProblem[] getErrors()
-
getWarnings
public CompilationProblem[] getWarnings()
-
-