![JAR search and dependency download from the Maven repository](/logo.png)
org.supercsv.ext.localization.MessageResolver Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of super-csv-annotation Show documentation
Show all versions of super-csv-annotation Show documentation
CSVのJavaライブラリであるSuperCSVに、アノテーション機能を追加したライブラリです。
/*
* MessageResolver.java
* created in 2013/03/09
*
* (C) Copyright 2003-2013 GreenDay Project. All rights reserved.
*/
package org.supercsv.ext.localization;
/**
* Strategy interface for resolving messages.
*
* @see 'OVal' net.sf.oval.localization.
* @author T.TSUCHIE
*
*/
public interface MessageResolver {
/**
* try to resolve message.
* @param code
* @return the resolved message. if the message wasn't found, return null.
*/
public String getMessage(String code);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy