An error occurs when XORM attempts to deal with the
mapping for an abstract class defined with
public abstract String getSomething();
public boolean isSomething() {
return "y".equals(getSomething());
}
This happens because org.xorm.util.PropertyDescriptor
gets confused about what's abstract and what's not.