pascallouisperez / jsonmarshaller

JsonMarshaller is a Java 1.5 library that allows marshalling and unmarshalling of JSON objects to and from entities ("Java classes").
Apache License 2.0
1 stars 0 forks source link

Add support for Collection/Map of objects with custom type converter for the Object (and not for Collection/Map) #35

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
@Value(type = MyType.class) is fine for MyObject myObj

but if I have for instance
List<MyObject> myObjects

I can't annotate them to reuse MyType.class and need a new converter able
to handle a List<MyObject>. The library should provide direct support for that.

Btw: doc is outdated
http://code.google.com/p/jsonmarshaller/wiki/UserDefinedTypes

Original issue reported on code.google.com by mguille...@yahoo.fr on 6 May 2010 at 4:01