Ejemplo n.º 1
0
 public void serializeURIs(BeanT bean, XMLSerializer target) throws SAXException {
   try {
     if (retainPropertyInfo) {
       final Property parentProperty = target.getCurrentProperty();
       for (Property<BeanT> p : uriProperties) {
         target.currentProperty.set(p);
         p.serializeURIs(bean, target);
       }
       target.currentProperty.set(parentProperty);
     } else {
       for (Property<BeanT> p : uriProperties) {
         p.serializeURIs(bean, target);
       }
     }
     if (inheritedAttWildcard != null) {
       Map<QName, String> map = inheritedAttWildcard.get(bean);
       target.attWildcardAsURIs(map, null);
     }
   } catch (AccessorException e) {
     target.reportError(null, e);
   }
 }