com.opensymphony.xwork2.ResourceBundleTextProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xwork Show documentation
Show all versions of xwork Show documentation
XWork is an command-pattern framework that is used to power WebWork
as well as other applications. XWork provides an Inversion of Control
container, a powerful expression language, data type conversion,
validation, and pluggable configuration.
package com.opensymphony.xwork2;
import java.util.ResourceBundle;
/**
* Extension Interface for TextProvider to help supporting ResourceBundles.
*
* @author Rene Gielen
*/
public interface ResourceBundleTextProvider extends TextProvider {
/**
* Set the resource bundle to use.
*
* @param bundle the bundle to use.
*/
void setBundle(ResourceBundle bundle);
/**
* Set the class to use for reading the resource bundle.
*
* @param clazz the class to use for loading.
*/
void setClazz(Class clazz);
/**
* Set the LocaleProvider to use.
*
* @param localeProvider the LocaleProvider to use.
*/
void setLocaleProvider(LocaleProvider localeProvider);
}