1 16 17 package org.springframework.beans; 18 19 import java.beans.PropertyDescriptor ; 20 21 53 public interface BeanWrapper extends ConfigurablePropertyAccessor, TypeConverter { 54 55 59 void setWrappedInstance(Object obj); 60 61 65 Object getWrappedInstance(); 66 67 72 Class getWrappedClass(); 73 74 79 PropertyDescriptor [] getPropertyDescriptors(); 80 81 89 PropertyDescriptor getPropertyDescriptor(String propertyName) throws BeansException; 90 91 } 92 | Popular Tags |