Class AemAnalyserResult


  • public class AemAnalyserResult
    extends java.lang.Object
    This class holds the result from an analyse run.
    • 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.
      boolean hasErrors()
      Are there any errors?
      boolean hasWarnings()
      Are there any warnings?
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • AemAnalyserResult

        public AemAnalyserResult()
    • Method Detail

      • hasErrors

        public boolean hasErrors()
        Are there any errors?
        Returns:
        true if an error exists
      • hasWarnings

        public boolean hasWarnings()
        Are there any warnings?
        Returns:
        true if 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.