for (int a = 0; a < arraySize; a++) {
JSONObject jObj;
try {
jObj = jArray.getJSONObject(a);
rtnValue.add(new Status(jObj.getLong("uid"), jObj.getLong("source"), jObj.getLong("status_id"),
new Date(jObj.getLong("time") * 1000), jObj.getString("message")));
} catch (JSONException e) {
e.printStackTrace();
}
}