Java Reference
In-Depth Information
import java.util.*;
import org.w3c.dom.*;
public class RSSItem
{
/*
* The title of this item.
*/
private String title;
/*
* The hyperlink to this item.
*/
private String link;
/*
* The description of this item.
*/
private String description;
/*
* The date this item was published.
*/
private Date date;
/**
* Get the publication date.
* @return The publication date.
*/
public Date getDate()
{
return date;
}
/**
* Set the publication date.
* @param date The new publication date.
*/
public void setDate(Date date)
{
this.date = date;
}
Search WWH ::




Custom Search