Lines Matching refs:jsonObject
60 JSONObject jsonObject = new JSONObject(); in toJson() local
62 jsonObject.put("id", id); in toJson()
63 jsonObject.put("month", month); in toJson()
64 jsonObject.put("date", date); in toJson()
65 jsonObject.put("hour", hour); in toJson()
66 jsonObject.put("minute", minute); in toJson()
70 return jsonObject.toString(); in toJson()
80 JSONObject jsonObject; in fromJson() local
83 jsonObject = new JSONObject(string); in fromJson()
84 alarm.id = jsonObject.getInt("id"); in fromJson()
85 alarm.month = jsonObject.getInt("month"); in fromJson()
86 alarm.date = jsonObject.getInt("date"); in fromJson()
87 alarm.hour = jsonObject.getInt("hour"); in fromJson()
88 alarm.minute = jsonObject.getInt("minute"); in fromJson()