Back to project page Book-MetaSearch.
The source code is released under:
Apache License
If you think the Android project Book-MetaSearch 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 com.ECS.client.jax; /*from ww w .j a v a 2 s .c om*/ import java.util.ArrayList; import java.util.List; public class EditorialReviews { protected List<EditorialReview> editorialReview; public List<EditorialReview> getEditorialReview() { if (editorialReview == null) { editorialReview = new ArrayList<EditorialReview>(); } return this.editorialReview; } }