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 www .ja v a 2s . c o m public class EditorialReview { protected String source; protected String content; protected Boolean isLinkSuppressed; /** * Gets the value of the source property. * * @return * possible object is * {@link String } * */ public String getSource() { return source; } /** * Sets the value of the source property. * * @param value * allowed object is * {@link String } * */ public void setSource(String value) { this.source = value; } /** * Gets the value of the content property. * * @return * possible object is * {@link String } * */ public String getContent() { return content; } /** * Sets the value of the content property. * * @param value * allowed object is * {@link String } * */ public void setContent(String value) { this.content = value; } /** * Gets the value of the isLinkSuppressed property. * * @return * possible object is * {@link Boolean } * */ public Boolean isIsLinkSuppressed() { return isLinkSuppressed; } /** * Sets the value of the isLinkSuppressed property. * * @param value * allowed object is * {@link Boolean } * */ public void setIsLinkSuppressed(Boolean value) { this.isLinkSuppressed = value; } }