Back to project page g3m_owm.
The source code is released under:
Copyright (c) 2013, Glob3 Mobile, Inc. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are m...
If you think the Android project g3m_owm 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.glob3.mobile.owm.shared.data; /*from w w w . j av a2 s. c o m*/ import java.util.ArrayList; public class Places { ArrayList<Place> _places = new ArrayList<Place>(); ArrayList<String> _placesString = new ArrayList<String>(); boolean _isDownloaded = false; public ArrayList<Place> getPlaces() { return _places; } public ArrayList<String> getPlacesAsString() { return _placesString; } public void setPlacesAsString(final ArrayList<String> placesString) { _placesString = placesString; } public void setPlaces(final ArrayList<Place> places) { _places = places; } public boolean isDownloaded() { return _isDownloaded; } public void setDownloaded(final boolean isDownloaded) { _isDownloaded = isDownloaded; } }