com.github.datalking.beans.BeanWrapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of play-ioc Show documentation
Show all versions of play-ioc Show documentation
simple ioc container with aop support.
The newest version!
package com.github.datalking.beans;
import java.beans.IntrospectionException;
import java.beans.PropertyDescriptor;
/**
* 包装bean属性的接口
*
* @author yaoo on 4/3/18
*/
public interface BeanWrapper {
Class> getWrappedClass();
Object getWrappedInstance();
void setPropertyValues(PropertyValues pvs) throws NoSuchFieldException, IllegalAccessException;
// PropertyDescriptor[] getPropertyDescriptors();
// PropertyDescriptor getPropertyDescriptor(String propertyName) throws IntrospectionException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy