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

org.sql2o.reflection.ReflectionMethodSetterFactory Maven / Gradle / Ivy

There is a newer version: 0.2.6
Show newest version
package org.sql2o.reflection;

import java.lang.reflect.Method;

/**
 * Created with IntelliJ IDEA.
 * User: dimzon
 * Date: 4/6/14
 * Time: 12:43 AM
 * To change this template use File | Settings | File Templates.
 */
public class ReflectionMethodSetterFactory implements MethodSetterFactory {
    public Setter newSetter(Method method) {
        return new MethodSetter(method);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy