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 w w w.j av a2s. co m import java.util.ArrayList; import java.util.List; public class NewReleases { protected List<NewReleases.NewRelease> newRelease; /** * Gets the value of the newRelease property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the newRelease property. * * <p> * For example, to add a new item, do as follows: * <pre> * getNewRelease().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link NewReleases.NewRelease } * * */ public List<NewReleases.NewRelease> getNewRelease() { if (newRelease == null) { newRelease = new ArrayList<NewReleases.NewRelease>(); } return this.newRelease; } public static class NewRelease { protected String asin; protected String title; /** * Gets the value of the asin property. * * @return * possible object is * {@link String } * */ public String getASIN() { return asin; } /** * Sets the value of the asin property. * * @param value * allowed object is * {@link String } * */ public void setASIN(String value) { this.asin = value; } /** * Gets the value of the title property. * * @return * possible object is * {@link String } * */ public String getTitle() { return title; } /** * Sets the value of the title property. * * @param value * allowed object is * {@link String } * */ public void setTitle(String value) { this.title = value; } } }