org.sql2o.reflection.ReflectionMethodGetterFactory Maven / Gradle / Ivy
package org.sql2o.reflection;
import java.lang.reflect.Method;
/**
* @author mdelapenya
*/
public class ReflectionMethodGetterFactory implements MethodGetterFactory {
public Getter newGetter(Method method) {
return new MethodGetter(method);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy