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(String message)
    Adds one message to the list.
    Get date of error messages.
    Returns the list of saved messages.
    void
    setDate(Date date)
    Set date of error messages.
  • Method Details

    • getDate

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

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

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

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