Back to project page meteoapp.
The source code is released under:
MIT License
If you think the Android project meteoapp 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 pl.sznapka.meteoapp; /* ww w . j a v a 2s.co m*/ import java.io.Serializable; import java.util.ArrayList; import pl.sznapka.meteo.valueobject.Forecast; /** * @author wowo * Forecast choosen by user */ public class ChoosenForecast implements Serializable { private static final long serialVersionUID = 448162750751778567L; public Forecast forecast; public ArrayList<String> diagramsPaths; public ArrayList<String> types; public ChoosenForecast(Forecast forecast, ArrayList<String> diagramsPaths, ArrayList<String> types) { this.forecast = forecast; this.diagramsPaths = diagramsPaths; this.types = types; } }