Class ErrorsManager


  • public class ErrorsManager
    extends java.lang.Object
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static java.lang.String YSERIESDATA  
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getErrors()  
      static ErrorsManager instance()
      This method returns the instance of ErrorsManager.
      void registerWizard​(WizardBase wizard)
      This method registers a wizard with the ErrorsManager.
      void removeErrors()
      Clean the error message in the wizard dialog.
      void showErrors​(java.lang.String errorMessage)
      Set the error message to the wizard dialog.
      • Methods inherited from class java.lang.Object

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

      • instance

        public static ErrorsManager instance()
        This method returns the instance of ErrorsManager. If an instance does not exist, one is created.
        Returns:
        Singleton instance of ErrorsManager
      • registerWizard

        public void registerWizard​(WizardBase wizard)
        This method registers a wizard with the ErrorsManager.
        Parameters:
        wizard -
      • showErrors

        public void showErrors​(java.lang.String errorMessage)
        Set the error message to the wizard dialog.
        Parameters:
        t - Exception
      • removeErrors

        public void removeErrors()
        Clean the error message in the wizard dialog.
      • getErrors

        public java.lang.String getErrors()