368369370371372373374375376
public Map describe() throws Exception { try { return PropertyUtils.describe(this); } catch (Throwable t) { throw new ChainedException(t); } } // end describe
387388389390391392393394395
public void set(Object o) throws Exception { try { BeanUtils.copyProperties(this,o); } catch (Throwable t) { throw new ChainedException(t); } } // end set
406407408409410411412413414
public void populate(Object o) throws Exception { try { BeanUtils.copyProperties(o,describe()); } catch (Throwable t) { throw new ChainedException(t); } } // end populate
350351352353354355356357358
369370371372373374375376377
388389390391392393394395396