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

com.happinesea.ec.rws.lib.RwsConverter.groovy Maven / Gradle / Ivy

There is a newer version: 1.0.0_preview
Show newest version
package com.happinesea.ec.rws.lib

/**
 * 異なるシステム間のオブジェクトを変換するために用いる変換クラス。
 *
 * @param  変換元のクラス
 * @Deprecated //TODO 未定
 */
abstract class RwsConverter {
    abstract  D convert(S source, D dest) ;
}