All Downloads are FREE. Search and download functionalities are using the official Maven repository.

nablarch.fw.DataReaderFactory Maven / Gradle / Ivy

The newest version!
package nablarch.fw;

import nablarch.core.util.annotation.Published;

/**
 * データリーダのファクトリクラスが実装するインスタンス。
 *
 * @param  データリーダが読み込むデータの型
 *
 * @author Iwauo Tajima
 */
@Published(tag = "architect")
public interface DataReaderFactory {
    /**
     * 新たなデータリーダを作成する。
     * 
     * @param context 実行コンテキスト
     * @return データリーダ
     */
    DataReader createReader(ExecutionContext context);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy