After scanning and tracing through the java code, I formulated a fix that allows this Type extension to work. The StructBean class can be changed to:
...
public StructBean(final Object obj) {
try {
PropertyDescriptor[] props =
PropertyUtils.getPropertyDescriptors(obj);
Arrays.sort(props, new PropertyComparator());
for (int...
2009-06-29 23:56:04 UTC in SQLUnit