1 16 package com.ibatis.common.beans; 17 18 22 public interface Probe { 23 24 31 public Object getObject(Object object, String name); 32 33 40 public void setObject(Object object, String name, Object value); 41 42 49 public Class getPropertyTypeForSetter(Object object, String name); 50 51 58 public Class getPropertyTypeForGetter(Object object, String name); 59 60 67 public boolean hasWritableProperty(Object object, String propertyName); 68 69 76 public boolean hasReadableProperty(Object object, String propertyName); 77 78 } 79 | Popular Tags |