Interface IErrorMessages

All Known Implementing Classes:
Alarms

public interface IErrorMessages
Represents messages that contain errors warnings and so on that may occur during the execution of the analysis.
Since:
1.15
Author:
Marc Adolf
  • Method Summary

    Modifier and Type Method Description
    void addMessage​(java.lang.String message)
    Adds one message to the list.
    java.util.Date getDate()
    Get date of error messages.
    java.util.List<java.lang.String> getMessages()
    Returns the list of saved messages.
    void setDate​(java.util.Date date)
    Set date of error messages.
  • Method Details

    • getDate

      java.util.Date getDate()
      Get date of error messages.
      Returns:
      date of the messages
    • setDate

      void setDate​(java.util.Date date)
      Set date of error messages.
      Parameters:
      date - of the messages
    • getMessages

      java.util.List<java.lang.String> getMessages()
      Returns the list of saved messages.
      Returns:
      the contained (error) messages.
    • addMessage

      void addMessage​(java.lang.String message)
      Adds one message to the list.
      Parameters:
      message - the new message in the list.