Go to file
Jesse Wilson 6ec6caa49d New extension: handle circular references.
Serialize graphs of objects by assigning each instance a generated ID and writing the complete graph out as a list. The output for a cycle of Rock/Scissors/Paper looks like this:

{
  '0x1':{'name':'ROCK','beats':'0x2'},
  '0x2':{'name':'SCISSORS','beats':'0x3'},
  '0x3':{'name':'PAPER','beats':'0x1'}
}

This is work towards issue 137. The hard part is going to be deserializing that back into a graph.
2011-12-30 07:34:43 +00:00
examples/android-proguard-example Retain annotations when using proguard + gson. From patch on issue 358. 2011-12-16 05:18:01 +00:00
extras New extension: handle circular references. 2011-12-30 07:34:43 +00:00
gson Test for registerTypeHierarchyAdapter() using Date.class 2011-12-29 07:27:33 +00:00
lib moved lib at the top-level to share eclipse styles. 2008-09-01 03:27:34 +00:00
metrics Check in our best Jackson vs. Gson comparison benchmarks. 2011-12-15 07:03:01 +00:00
proto updated version of protobuf dependency 2011-04-22 18:29:36 +00:00