Back to project page android-weather-demo-application.
The source code is released under:
GNU General Public License
If you think the Android project android-weather-demo-application 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.openweathermap.asynctask.param; /* ww w . j av a2 s. com*/ import org.openweathermap.asynctask.base.IParam; /** * @author samkirton */ public class SearchCitiesParam implements IParam { private String mSearchTerms; public String getSearchTerms() { return mSearchTerms; } public void setSearchTerms(String newVal) { mSearchTerms = newVal; } }