WIP update api

This commit is contained in:
Rob Bygrave
2014-04-20 16:57:14 +12:00
parent 96e4b4640f
commit f7a37537db
20 changed files with 41 additions and 122 deletions
@@ -79,13 +79,13 @@ public class WriteJsonContext implements JsonWriter {
return;
}
Object o = it.next();
EntityBean o = (EntityBean)it.next();
BeanDescriptor<?> d = getDecriptor(o.getClass());
d.jsonWrite(this, o);
while (it.hasNext()) {
appendComma();
Object t = it.next();
EntityBean t = (EntityBean)it.next();
d.jsonWrite(this, t);
}
endAssocMany();