1 16 package org.apache.commons.jxpath; 17 18 import java.beans.PropertyDescriptor ; 19 20 35 public interface JXPathBeanInfo { 36 37 42 boolean isAtomic(); 43 44 51 boolean isDynamic(); 52 53 57 PropertyDescriptor [] getPropertyDescriptors(); 58 59 63 PropertyDescriptor getPropertyDescriptor(String propertyName); 64 65 70 Class getDynamicPropertyHandlerClass(); 71 } | Popular Tags |