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.
21 lines
438 B
21 lines
438 B
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(); |
|
} |
|
}
|
|
|