com.rometools.rome.feed.rss.Image Maven / Gradle / Ivy
Show all versions of rome Show documentation
/*
* Copyright 2004 Sun Microsystems, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
package com.rometools.rome.feed.rss;
import java.io.Serializable;
import com.rometools.rome.feed.impl.ObjectBean;
/**
* Bean for images of RSS feeds.
*/
public class Image implements Cloneable, Serializable {
private static final long serialVersionUID = 1L;
private final ObjectBean objBean;
private String title;
private String url;
private String link;
private Integer width = -1;
private Integer height = -1;
private String description;
public Image() {
objBean = new ObjectBean(this.getClass(), this);
}
/**
* Creates a deep 'bean' clone of the object.
*
*
* @return a clone of the object.
* @throws CloneNotSupportedException thrown if an element of the object cannot be cloned.
*
*/
@Override
public Object clone() throws CloneNotSupportedException {
return objBean.clone();
}
/**
* Indicates whether some other object is "equal to" this one as defined by the Object equals()
* method.
*
*
* @param other he reference object with which to compare.
* @return true if 'this' object is equal to the 'other' object.
*
*/
@Override
public boolean equals(final Object other) {
if (!(other instanceof Image)) {
return false;
}
return objBean.equals(other);
}
/**
* Returns a hashcode value for the object.
*
* It follows the contract defined by the Object hashCode() method.
*
*
* @return the hashcode of the bean object.
*
*/
@Override
public int hashCode() {
return objBean.hashCode();
}
/**
* Returns the String representation for the object.
*
*
* @return String representation for the object.
*
*/
@Override
public String toString() {
return objBean.toString();
}
/**
* Returns the image title.
*
*
* @return the image title, null if none.
*
*/
public String getTitle() {
return title;
}
/**
* Sets the image title.
*
*
* @param title the image title to set, null if none.
*
*/
public void setTitle(final String title) {
this.title = title;
}
/**
* Returns the image URL.
*
*
* @return the image URL, null if none.
*
*/
public String getUrl() {
return url;
}
/**
* Sets the image URL.
*
*
* @param url the image URL to set, null if none.
*
*/
public void setUrl(final String url) {
this.url = url;
}
/**
* Returns the image link.
*
*
* @return the image link, null if none.
*
*/
public String getLink() {
return link;
}
/**
* Sets the image link.
*
*
* @param link the image link to set, null if none.
*
*/
public void setLink(final String link) {
this.link = link;
}
/**
* Returns the image width.
*
*
* @return the image width, null if none.
*
*/
public Integer getWidth() {
return width;
}
/**
* Sets the image width.
*
*
* @param width the image width to set, null if none.
*
*/
public void setWidth(final Integer width) {
this.width = width;
}
/**
* Returns the image height.
*
*
* @return the image height, null if none.
*
*/
public Integer getHeight() {
return height;
}
/**
* Sets the image height.
*
*
* @param height the image height to set, null if none.
*
*/
public void setHeight(final Integer height) {
this.height = height;
}
/**
* Returns the image description.
*
*
* @return the image description, null if none.
*
*/
public String getDescription() {
return description;
}
/**
* Sets the image description.
*
*
* @param description the image description to set, null if none.
*
*/
public void setDescription(final String description) {
this.description = description;
}
}