Back to project page colibri.
The source code is released under:
Apache License
If you think the Android project colibri listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package labrom.colibri.xml; //from ww w . j av a 2 s.co m public class Item { public int id; public String title; public String date; public Author authorObj; public String authorName; public String authorDateOfBirth; public static class Author { public String name; public String dateOfBirth; } }