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; /*from ww w. jav a2s. c o m*/ 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); } }