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 w w . j a va 2s . c om*/ public class CustomerReviews { protected String iFrameURL; protected Boolean hasReviews; /** * Gets the value of the iFrameURL property. * * @return * possible object is * {@link String } * */ public String getIFrameURL() { return iFrameURL; } /** * Sets the value of the iFrameURL property. * * @param value * allowed object is * {@link String } * */ public void setIFrameURL(String value) { this.iFrameURL = value; } /** * Gets the value of the hasReviews property. * * @return * possible object is * {@link Boolean } * */ public Boolean isHasReviews() { return hasReviews; } /** * Sets the value of the hasReviews property. * * @param value * allowed object is * {@link Boolean } * */ public void setHasReviews(Boolean value) { this.hasReviews = value; } }