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; /* ww w.j av a 2s. com*/ public class RelatedItem { protected Item item; /** * Gets the value of the item property. * * @return * possible object is * {@link Item } * */ public Item getItem() { return item; } /** * Sets the value of the item property. * * @param value * allowed object is * {@link Item } * */ public void setItem(Item value) { this.item = value; } }