@Element(targetType=Item.class)
public List<Item> list;
can be simplified to
@Element
public List<Item> list;
by using reflection to discover generics type parameters of fields.
Original issue reported on code.google.com by peter.kn...@gmail.com on 5 Jan 2010 at 10:48
Original issue reported on code.google.com by
peter.kn...@gmail.com
on 5 Jan 2010 at 10:48