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

aquality.selenium.core.localization.ILocalizationManager Maven / Gradle / Ivy

Go to download

Library with core functions simplifying work with Selenium-controlled applications.

There is a newer version: 4.2.0
Show newest version
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