return (T) null;
}
if ("array".equals(body.optString("subtype"))) {
RemoteObject array = new RemoteObject(body.getString("objectId"), this);
RemoteObjectArray a = new RemoteObjectArray(array);
ArrayList<Object> res = new ArrayList<Object>();
for (Object ro : a) {
res.add(ro);
}
return (T) res;