aquality.selenium.core.localization.ILocalizationManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aquality-selenium-core Show documentation
Show all versions of aquality-selenium-core Show documentation
Library with core functions simplifying work with Selenium-controlled applications.
package aquality.selenium.core.localization;
/**
* This interface is used for translation messages to different languages.
*/
public interface ILocalizationManager {
/**
* Gets localized message from resources by its key.
*
* @param messageKey Key in resource file.
* @param args Arguments, which will be provided to template of localized message.
* @return Localized message.
*/
String getLocalizedMessage(String messageKey, Object... args);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy