net.sf.andromedaioc.bean.param.AccessorWrapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of andromeda-ioc Show documentation
Show all versions of andromeda-ioc Show documentation
Inversion of Control Framework for Android
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;
}