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 v a 2 s .co m*/ public class Image { protected String url; protected DecimalWithUnits height; protected DecimalWithUnits width; protected String isVerified; /** * Gets the value of the url property. * * @return * possible object is * {@link String } * */ public String getURL() { return url; } /** * Sets the value of the url property. * * @param value * allowed object is * {@link String } * */ public void setURL(String value) { this.url = value; } /** * Gets the value of the height property. * * @return * possible object is * {@link DecimalWithUnits } * */ public DecimalWithUnits getHeight() { return height; } /** * Sets the value of the height property. * * @param value * allowed object is * {@link DecimalWithUnits } * */ public void setHeight(DecimalWithUnits value) { this.height = value; } /** * Gets the value of the width property. * * @return * possible object is * {@link DecimalWithUnits } * */ public DecimalWithUnits getWidth() { return width; } /** * Sets the value of the width property. * * @param value * allowed object is * {@link DecimalWithUnits } * */ public void setWidth(DecimalWithUnits value) { this.width = value; } /** * Gets the value of the isVerified property. * * @return * possible object is * {@link String } * */ public String getIsVerified() { return isVerified; } /** * Sets the value of the isVerified property. * * @param value * allowed object is * {@link String } * */ public void setIsVerified(String value) { this.isVerified = value; } }