📄 resourcebundletextprovider.java
字号:
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);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -