Re: [Simple-support] XML nightmares :-)
Brought to you by:
niallg
|
From: Gareth M. <gar...@gm...> - 2012-02-29 14:16:24
|
Hi guys, got it... didnt read docs properly, ended up with
@Root
public class first_inspection_results {
@ElementList (inline=true)
public List<first_inspection> list;
}
@Root
public class first_inspection {
@Element
public String rider_number;
@Element
public String horse_name;
@Element
public String rider_name;
@Element
public String status;
}
and works :-D
Gaz.
|