forked from fanruan/finekit
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
438 B
22 lines
438 B
6 years ago
|
package com.fanruan.api.web;
|
||
|
|
||
|
import com.fr.decision.web.i18n.I18nTextGenerator;
|
||
|
import com.fr.gen.TextGenerator;
|
||
|
|
||
|
/**
|
||
|
* @author richie
|
||
|
* @version 10.0
|
||
|
* Created by richie on 2019-09-19
|
||
|
*/
|
||
|
public class TextGeneratorKit {
|
||
|
|
||
|
/**
|
||
|
* 创建一个用于国际化的文本输出器
|
||
|
*
|
||
|
* @return 文本输出器
|
||
|
*/
|
||
|
public static TextGenerator newI18nTextGenerator() {
|
||
|
return new I18nTextGenerator();
|
||
|
}
|
||
|
}
|