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

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

There is a newer version: 1.9.0-RC1
Show newest version
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 - 2024 Weber Informatics LLC | Privacy Policy