596061626364656667
// Set the corresponding properties of our bean try { BeanUtils.populate(bean, properties); } catch (Throwable t) { throw new ModelPopulateException(t); } }
979899100101102103104105
Document doc = hits.doc(i); populate(bean,doc); list.add(bean); } } catch (Throwable t) { throw new ModelPopulateException(t); } return ((Collection) list); }