1 16 package org.directwebremoting.extend; 17 18 import java.beans.PropertyDescriptor ; 19 import java.lang.reflect.Member ; 20 import java.lang.reflect.Method ; 21 22 27 public interface Property 28 { 29 33 public String getName(); 34 35 39 public Class getPropertyType(); 40 41 47 public Object getValue(Object bean) throws MarshallException; 48 49 55 public void setValue(Object bean, Object value) throws MarshallException; 56 57 64 public Method getSetter(); 65 } 66 | Popular Tags |