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; // w ww . j a v a 2 s.co m import java.math.BigInteger; import java.util.ArrayList; import java.util.List; public class RelatedItems { protected String relationship; protected String relationshipType; protected BigInteger relatedItemCount; protected BigInteger relatedItemPageCount; protected BigInteger relatedItemPage; protected List<RelatedItem> relatedItem; /** * Gets the value of the relationship property. * * @return * possible object is * {@link String } * */ public String getRelationship() { return relationship; } /** * Sets the value of the relationship property. * * @param value * allowed object is * {@link String } * */ public void setRelationship(String value) { this.relationship = value; } /** * Gets the value of the relationshipType property. * * @return * possible object is * {@link String } * */ public String getRelationshipType() { return relationshipType; } /** * Sets the value of the relationshipType property. * * @param value * allowed object is * {@link String } * */ public void setRelationshipType(String value) { this.relationshipType = value; } /** * Gets the value of the relatedItemCount property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getRelatedItemCount() { return relatedItemCount; } /** * Sets the value of the relatedItemCount property. * * @param value * allowed object is * {@link BigInteger } * */ public void setRelatedItemCount(BigInteger value) { this.relatedItemCount = value; } /** * Gets the value of the relatedItemPageCount property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getRelatedItemPageCount() { return relatedItemPageCount; } /** * Sets the value of the relatedItemPageCount property. * * @param value * allowed object is * {@link BigInteger } * */ public void setRelatedItemPageCount(BigInteger value) { this.relatedItemPageCount = value; } /** * Gets the value of the relatedItemPage property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getRelatedItemPage() { return relatedItemPage; } /** * Sets the value of the relatedItemPage property. * * @param value * allowed object is * {@link BigInteger } * */ public void setRelatedItemPage(BigInteger value) { this.relatedItemPage = value; } /** * Gets the value of the relatedItem 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 relatedItem property. * * <p> * For example, to add a new item, do as follows: * <pre> * getRelatedItem().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link RelatedItem } * * */ public List<RelatedItem> getRelatedItem() { if (relatedItem == null) { relatedItem = new ArrayList<RelatedItem>(); } return this.relatedItem; } }