Back to project page NYU-BusTracker-Android.
The source code is released under:
Apache License
If you think the Android project NYU-BusTracker-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 com.nyubustracker.helpers; /* www . jav a 2 s .com*/ import com.nyubustracker.models.Stop; import org.json.JSONException; import org.json.JSONObject; import java.io.IOException; public class StopDownloaderHelper implements DownloaderHelper { public static final String STOP_JSON_FILE = "stopJson"; @Override public void parse(JSONObject jsonObject) throws JSONException, IOException { Stop.parseJSON(jsonObject); Downloader.cache(STOP_JSON_FILE, jsonObject); } }