Package net.freedom.gj.beans.converter

Examples of net.freedom.gj.beans.converter.Converter


        MappingData data = new MappingData();
        data.setSourceExpression(resolveKey("source=\"", "\"", conf));
        data.setTargetExpression(resolveKey("target=\"", "\"", conf));
        String converter = resolveKey("converter=\"", "\"", conf);
        if (converter != null) {           
            Converter instance = getConverter(converter);
            data.setConverter(instance);
        }
        return data;
    }
View Full Code Here

TOP

Related Classes of net.freedom.gj.beans.converter.Converter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.