org.sql2o.reflection.Setter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sql2o Show documentation
Show all versions of sql2o Show documentation
Easy database query library
package org.sql2o.reflection;
/**
* The Setter interface is used by sql2o to set property values when doing automatic column to property mapping
*/
public interface Setter {
void setProperty(Object obj, Object value);
Class getType();
}