All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sklsft.commons.mvc.messages.MessageHandler Maven / Gradle / Ivy

There is a newer version: 4.0.0
Show newest version
package org.sklsft.commons.mvc.messages;

/**
 * This interface defines 3 methods to raise a message that will be displayed in the view
*
  • INFO *
  • WARNING *
  • ERROR * Its implementations should be in charge of the internationalization of the message * * @author Nicolas Thibault */ public interface MessageHandler { void displayInfo(String message); void displayWarning(String message); void displayError(String message); }




  • © 2015 - 2025 Weber Informatics LLC | Privacy Policy