Java Doc for Item.java in  » RSS-RDF » Rome » com » sun » syndication » feed » rss » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » RSS RDF » Rome » com.sun.syndication.feed.rss 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   com.sun.syndication.feed.rss.Item

Item
public class Item implements Cloneable,Serializable,Extendable(Code)
Bean for items of RSS feeds.

It handles all RSS versions without loosing information.

For RSS1.0 it supports Dublin Core and Syndication modules. Note that those modules currently support simple syntax format only.


author:
   Alejandro Abdelnur




Constructor Summary
public  Item()
     Default constructor.

Method Summary
public  Objectclone()
     Creates a deep 'bean' clone of the object.
public  booleanequals(Object other)
     Indicates whether some other object is "equal to" this one as defined by the Object equals() method.


Parameters:
  other - he reference object with which to compare.

public  StringgetAuthor()
     Returns the item author.
public  ListgetCategories()
     Returns the item categories.
public  StringgetComments()
     Returns the item comments.
public  ContentgetContent()
     Returns the item content.
public  DescriptiongetDescription()
     Returns the item description.
public  ListgetEnclosures()
     Returns the item enclosures.
public  DategetExpirationDate()
     Returns the item expiration date.
public  ObjectgetForeignMarkup()
     Returns foreign markup found at item level.
public  GuidgetGuid()
     Returns the item GUID.
public  StringgetLink()
     Returns the item link.
public  ModulegetModule(String uri)
     Returns the module identified by a given URI.


Parameters:
  uri - the URI of the ModuleImpl.

public  ListgetModules()
     Returns the item modules.
public  DategetPubDate()
     Returns the item publishing date.
public  SourcegetSource()
     Returns the item source.
public  StringgetTitle()
     Returns the item title.
public  StringgetUri()
     Returns the item uri.
public  inthashCode()
     Returns a hashcode value for the object.
public  voidsetAuthor(String author)
     Sets the item author.
public  voidsetCategories(List categories)
     Sets the item categories.
public  voidsetComments(String comments)
     Sets the item comments.
public  voidsetContent(Content content)
     Sets the item content.
public  voidsetDescription(Description description)
     Sets the item description.
public  voidsetEnclosures(List enclosures)
     Sets the item enclosures.
public  voidsetExpirationDate(Date expirationDate)
     Sets the item expiration date.
public  voidsetForeignMarkup(Object foreignMarkup)
     Sets foreign markup found at item level.
public  voidsetGuid(Guid guid)
     Sets the item GUID.
public  voidsetLink(String link)
     Sets the item link.
public  voidsetModules(List modules)
     Sets the item modules.
public  voidsetPubDate(Date pubDate)
     Sets the item publishing date.
public  voidsetSource(Source source)
     Sets the item source.
public  voidsetTitle(String title)
     Sets the item title.
public  voidsetUri(String uri)
     Sets the item uri.
public  StringtoString()
     Returns the String representation for the object.


Constructor Detail
Item
public Item()(Code)
Default constructor. All properties are set to null.





Method Detail
clone
public Object clone() throws CloneNotSupportedException(Code)
Creates a deep 'bean' clone of the object.

a clone of the object.
throws:
  CloneNotSupportedException - thrown if an element of the object cannot be cloned.




equals
public boolean equals(Object other)(Code)
Indicates whether some other object is "equal to" this one as defined by the Object equals() method.


Parameters:
  other - he reference object with which to compare. true if 'this' object is equal to the 'other' object.




getAuthor
public String getAuthor()(Code)
Returns the item author.

the item author, null if none.




getCategories
public List getCategories()(Code)
Returns the item categories.

a list of Category elements with the item categories,an empty list if none.




getComments
public String getComments()(Code)
Returns the item comments.

the item comments, null if none.




getContent
public Content getContent()(Code)
Returns the item content.

the item content, null if none.




getDescription
public Description getDescription()(Code)
Returns the item description.

the item description, null if none.




getEnclosures
public List getEnclosures()(Code)
Returns the item enclosures.

a list of Enclosure elements with the item enclosures,an empty list if none.




getExpirationDate
public Date getExpirationDate()(Code)
Returns the item expiration date.

the item expiration date, null if none.




getForeignMarkup
public Object getForeignMarkup()(Code)
Returns foreign markup found at item level.

Opaque object to discourage use




getGuid
public Guid getGuid()(Code)
Returns the item GUID.

the item GUID, null if none.




getLink
public String getLink()(Code)
Returns the item link.

the item link, null if none.




getModule
public Module getModule(String uri)(Code)
Returns the module identified by a given URI.


Parameters:
  uri - the URI of the ModuleImpl. The module with the given URI, null if none.




getModules
public List getModules()(Code)
Returns the item modules.

a list of ModuleImpl elements with the item modules,an empty list if none.




getPubDate
public Date getPubDate()(Code)
Returns the item publishing date.

the item publishing date, null if none.




getSource
public Source getSource()(Code)
Returns the item source.

the item source, null if none.




getTitle
public String getTitle()(Code)
Returns the item title.

the item title, null if none.




getUri
public String getUri()(Code)
Returns the item uri.

the item uri, null if none.




hashCode
public int hashCode()(Code)
Returns a hashcode value for the object.

It follows the contract defined by the Object hashCode() method.

the hashcode of the bean object.




setAuthor
public void setAuthor(String author)(Code)
Sets the item author.


Parameters:
  author - the item author to set, null if none.




setCategories
public void setCategories(List categories)(Code)
Sets the item categories.


Parameters:
  categories - the list of Categories elements with the item categories to set,an empty list or null if none.




setComments
public void setComments(String comments)(Code)
Sets the item comments.


Parameters:
  comments - the item comments to set, null if none.




setContent
public void setContent(Content content)(Code)
Sets the item content.


Parameters:
  content - the item content to set, null if none.




setDescription
public void setDescription(Description description)(Code)
Sets the item description.


Parameters:
  description - the item description to set, null if none.




setEnclosures
public void setEnclosures(List enclosures)(Code)
Sets the item enclosures.


Parameters:
  enclosures - the list of Enclosure elements with the item enclosures to set,an empty list or null if none.




setExpirationDate
public void setExpirationDate(Date expirationDate)(Code)
Sets the item expiration date.


Parameters:
  expirationDate - the item expiration date to set, null if none.




setForeignMarkup
public void setForeignMarkup(Object foreignMarkup)(Code)
Sets foreign markup found at item level.


Parameters:
  foreignMarkup - Opaque object to discourage use




setGuid
public void setGuid(Guid guid)(Code)
Sets the item GUID.


Parameters:
  guid - the item GUID to set, null if none.




setLink
public void setLink(String link)(Code)
Sets the item link.


Parameters:
  link - the item link to set, null if none.




setModules
public void setModules(List modules)(Code)
Sets the item modules.


Parameters:
  modules - the list of ModuleImpl elements with the item modules to set,an empty list or null if none.




setPubDate
public void setPubDate(Date pubDate)(Code)
Sets the item publishing date.


Parameters:
  pubDate - the item publishing date to set, null if none.




setSource
public void setSource(Source source)(Code)
Sets the item source.


Parameters:
  source - the item source to set, null if none.




setTitle
public void setTitle(String title)(Code)
Sets the item title.


Parameters:
  title - the item title to set, null if none.




setUri
public void setUri(String uri)(Code)
Sets the item uri.


Parameters:
  uri - the item uri to set, null if none.




toString
public String toString()(Code)
Returns the String representation for the object.

String representation for the object.




Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.