public java.lang.reflect.Method findGetter() {
   return findMethod(
       localDBMeta.getEntityType(), "get" + buildInitCapPropertyName(), new Class[] {});
 }
 // ===================================================================================
 //                                                                              Finder
 //                                                                              ======
 public java.lang.reflect.Method findSetter() {
   return findMethod(
       localDBMeta.getEntityType(),
       "set" + buildInitCapPropertyName(),
       new Class[] {java.util.List.class});
 }