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

net.sf.andromedaioc.bean.param.AccessorWrapper Maven / Gradle / Ivy

The newest version!
package net.sf.andromedaioc.bean.param;

/**
 * Wrapper to use common interface for property (via setter) and fields accessing
 *
 * @author Alexey Mitrov
 */
public interface AccessorWrapper {

    /**
     * Set value of property or field of target object
     * @param target target object
     * @param value value of property or filed
     * @throws Exception
     */
    void set(Object target, Object value) throws Exception;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy