JXPathBeanInfo is similar to java.beans.BeanInfo in that it describes
properties of a JavaBean class. By default, JXPathBeanInfo classes are
automatically generated by JXPathIntrospector
based on the java.beans.BeanInfo. As with JavaBeans, the user can supply an
alternative implementation of JXPathBeanInfo for a custom class. The
alternative implementation is located by class name, which is the same as the
name of the class it represents with the suffix "XBeanInfo". So, for
example, if you need to provide an alternative JXPathBeanInfo class for class
"com.foo.Bar", write a class "com.foo.BarXBeanInfo" and make it implement the
JXPathBeanInfo interface.