Esempio n. 1
0
 private OnWire _adaptM(XMLSerializer serializer, InMemory v) throws MarshalException {
   XmlAdapter<OnWire, InMemory> a = serializer.getAdapter(adapter);
   try {
     return a.marshal(v);
   } catch (Exception e) {
     serializer.handleError(e, v, null);
     throw new MarshalException(e);
   }
 }