com.github.datalking.context.MessageSource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of play-mvc Show documentation
Show all versions of play-mvc Show documentation
simple mvc framework based on java servlet.
The newest version!
package com.github.datalking.context;
import java.util.Locale;
/**
* message解析接口
* 支持语言国际化
*
* @author yaoo on 5/3/18
*/
public interface MessageSource {
String getMessage(String code, Object[] args, String defaultMessage, Locale locale);
String getMessage(String code, Object[] args, Locale locale);
String getMessage(MessageSourceResolvable resolvable, Locale locale);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy