Back to project page One-Button-App---Android.
The source code is released under:
Copyright (c) 2002,2003, Stefan Haustein, Oberhausen, Rhld., Germany Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (...
If you think the Android project One-Button-App---Android 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; /* w ww . jav a 2s. 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(); }