Back to project page pandoroid.
The source code is released under:
GNU General Public License
If you think the Android project pandoroid listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package org.xmlrpc.android; /*ww w.jav a2s . co m*/ /** * Allows to pass any XMLRPCSerializable object as input parameter. * When implementing getSerializable() you should return * one of XMLRPC primitive types (or another XMLRPCSerializable: be careful not going into * recursion by passing this object reference!) */ public interface XMLRPCSerializable { /** * Gets XMLRPC serialization object * @return object to serialize This object is most likely one of XMLRPC primitive types, * however you can return also another XMLRPCSerializable */ Object getSerializable(); }