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; /* w w w.j av a2s. c o m*/ import com.nyubustracker.models.Bus; import org.json.JSONException; import org.json.JSONObject; import java.io.IOException; public class BusDownloaderHelper implements DownloaderHelper { @Override public void parse(JSONObject jsonObject) throws JSONException, IOException { Bus.parseJSON(jsonObject); } }