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に、アノテーション機能を追加したライブラリです。
package org.supercsv.ext.localization;
/**
* Strategy interface for resolving messages.
*
* @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);
}