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; /*from www . ja v a 2 s . c om*/ import java.util.ArrayList; public class MethodCall { private static final int TOPIC = 1; String methodName; ArrayList<Object> params = new ArrayList<Object>(); public String getMethodName() { return methodName; } void setMethodName(String methodName) { this.methodName = methodName; } public ArrayList<Object> getParams() { return params; } void setParams(ArrayList<Object> params) { this.params = params; } public String getTopic() { return (String)params.get(TOPIC); } }