@Override
 public void leaveElement(State state, TagName ea) throws SAXException {
   super.leaveElement(state, ea);
   try {
     acc.set(target, map);
   } catch (AccessorException ex) {
     handleGenericException(ex, true);
   }
 }
 public void reset(BeanT bean) throws AccessorException {
   acc.set(bean, null);
 }