}
private IsParent getParent(ResultSet rs, Class type, PropertyDescriptor[] props, int[] columnToProperty, int cols, ResultSetMetaData meta) throws
SQLException {
IsParent bean = (IsParent)super.newInstance(type);
bean = (IsParent) invokeSetter(rs, props, columnToProperty, cols, meta, bean);
IsParent result = (IsParent) hashParent.get(bean.findPrimaryKey());
if (result == null) {
hashParent.put(bean.findPrimaryKey(), bean);
result = (IsParent) hashParent.get(bean.findPrimaryKey());
}
return result;