Back to project page android-facade-example.
The source code is released under:
MIT License
If you think the Android project android-facade-example 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 com.ruenzuo.weatherapp.utils; /*from www. j a v a 2s .com*/ import com.ruenzuo.weatherapp.models.Country; import java.util.ArrayList; /** * Created by ruenzuo on 24/05/14. */ public class WeatherAppUtils { public static ArrayList<String> getIdentifiers(Country[] countries) { ArrayList<String> identifiers = new ArrayList<String>(); for (Country country : countries) { identifiers.add(country.getCode()); } return identifiers; } }