de.ppi.selenium.logevent.report.MessageSource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of webtest Show documentation
Show all versions of webtest Show documentation
Some additional helper for webtesting with selenium
package de.ppi.selenium.logevent.report;
import java.util.Locale;
/**
* A Message-Source.
*
*/
public interface MessageSource {
/**
* Get a Message.
*
* @param key the key
* @param locale the locale
* @param arguments the argument for the message.
* @return the message.
*/
String getMessage(String key, Locale locale, Object... arguments);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy