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 a va2 s . c o m import java.util.ArrayList; import java.util.List; public class ItemLinks { protected List<ItemLink> itemLink; /** * Gets the value of the itemLink 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 itemLink property. * * <p> * For example, to add a new item, do as follows: * <pre> * getItemLink().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link ItemLink } * * */ public List<ItemLink> getItemLink() { if (itemLink == null) { itemLink = new ArrayList<ItemLink>(); } return this.itemLink; } }