01: package jaxx.introspection;
02:
03: import jaxx.reflect.*;
04:
05: /** Mirrors the class <code>java.beans.BeanDescriptor</code>. JAXX uses its own introspector rather than the built-in
06: * <code>java.beans.Introspector</code> so that it can introspect {@link jaxx.reflect.ClassDescriptor},
07: * not just <code>java.lang.Class</code>.
08: */
09: public class JAXXBeanDescriptor extends JAXXFeatureDescriptor {
10: public JAXXBeanDescriptor(ClassDescriptor beanClass) {
11: super(beanClass, beanClass.getName());
12: }
13: }
|