Interface ErrorPopupSupported

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.lang.String getError()
      Gets the error message.
      void hideErrorPopup()
      Hides the error popup if shown.
      void setError​(java.lang.String error)
      Sets the error message.
      Notice that an empty string will set the style but dows not show any popup.
      void showErrorPopup()
      Shows the error popup.
      Requires the error message set.
    • Method Detail

      • getError

        java.lang.String getError()
        Gets the error message.
        Returns:
        the message, null if no error
      • setError

        void setError​(java.lang.String error)
        Sets the error message.
        Notice that an empty string will set the style but dows not show any popup.
        Parameters:
        error - the error message, null to clear
      • showErrorPopup

        void showErrorPopup()
        Shows the error popup.
        Requires the error message set.
      • hideErrorPopup

        void hideErrorPopup()
        Hides the error popup if shown.