You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

SchedulesDbo.java 584B

123456789101112131415161718192021222324252627282930313233
  1. package com.rthoni.stssaguenay.dbo;
  2. import com.luticate.utils.dbo.LuDbo;
  3. import org.joda.time.LocalTime;
  4. import org.json.JSONException;
  5. import org.json.JSONObject;
  6. import java.util.HashMap;
  7. import java.util.List;
  8. /**
  9. * Created by robin on 10/1/16.
  10. */
  11. public class SchedulesDbo extends LuDbo {
  12. protected String _stopId;
  13. protected String _routeId;
  14. protected List<LocalTime> _schedules;
  15. @Override
  16. public void fromJson(JSONObject json) throws JSONException {
  17. }
  18. @Override
  19. public HashMap<String, Object> toArray() {
  20. return null;
  21. }
  22. }