org.sql2o.reflection.ReflectionFieldSetterFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of anima Show documentation
Show all versions of anima Show documentation
Operate the database like a stream
package org.sql2o.reflection;
import java.lang.reflect.Field;
/**
* Created with IntelliJ IDEA.
* User: dimzon
* Date: 4/6/14
* Time: 12:40 AM
* To change this template use File | Settings | File Templates.
*/
public class ReflectionFieldSetterFactory implements FieldSetterFactory {
public Setter newSetter(Field field) {
return new FieldSetter(field);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy