android-ibc-forum

Unnamed repository; edit this file 'description' to name the repository.
git clone http://git.code.weiherhei.de/android-ibc-forum.git
Log | Files | Refs

XMLRPCSerializable.java (569B)


      1 package org.xmlrpc.android;
      2 
      3 /**
      4  * Allows to pass any XMLRPCSerializable object as input parameter.
      5  * When implementing getSerializable() you should return 
      6  * one of XMLRPC primitive types (or another XMLRPCSerializable: be careful not going into
      7  * recursion by passing this object reference!)  
      8  */
      9 public interface XMLRPCSerializable {
     10 	
     11 	/**
     12 	 * Gets XMLRPC serialization object
     13 	 * @return object to serialize This object is most likely one of XMLRPC primitive types,
     14 	 * however you can return also another XMLRPCSerializable
     15 	 */
     16 	Object getSerializable();
     17 }