535455565758596061
* * @return The instance of the SerializerHandler. */ public static SerializerHandler getDefault() { if(instance == null) { throw new XMLRPCRuntimeException("The SerializerHandler has not been initialized."); } return instance; }
101102103104105106107108109110
entry.addChildren(value); struct.addChildren(entry); } } catch(XMLRPCException ex) { throw new XMLRPCRuntimeException(ex); } return struct; }
7273747576777879808182
e.addChildren(SerializerHandler.getDefault().serialize(obj)); data.addChildren(e); } } catch(XMLRPCException ex) { throw new XMLRPCRuntimeException(ex); } return array; }