Package com.adobe.aem.analyser
Class AemAnalyserResult
- java.lang.Object
-
- com.adobe.aem.analyser.AemAnalyserResult
-
public class AemAnalyserResult extends java.lang.ObjectThis class holds the result from an analyse run.
-
-
Constructor Summary
Constructors Constructor Description AemAnalyserResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<java.lang.String>getErrors()Get the list of errors.java.util.List<java.lang.String>getWarnings()Get the list of warnings.booleanhasErrors()Are there any errors?booleanhasWarnings()Are there any warnings?
-
-
-
Method Detail
-
hasErrors
public boolean hasErrors()
Are there any errors?- Returns:
trueif an error exists
-
hasWarnings
public boolean hasWarnings()
Are there any warnings?- Returns:
trueif a warning exists
-
getErrors
public java.util.List<java.lang.String> getErrors()
Get the list of errors. The list is mutable.- Returns:
- The list of errors, might be empty.
-
getWarnings
public java.util.List<java.lang.String> getWarnings()
Get the list of warnings. The list is mutable.- Returns:
- The list of warnings, might be empty.
-
-