org.sql2o.reflection.Setter Maven / Gradle / Ivy
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();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy