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

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

There is a newer version: 0.2.6
Show newest version
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