Java Doc for Entry.java in  » RSS-RDF » Rome » com » sun » syndication » feed » atom » 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.atom 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   com.sun.syndication.feed.atom.Entry

Entry
public class Entry implements Cloneable,Serializable,Extendable(Code)
Bean for entry elements of Atom feeds.


author:
   Alejandro Abdelnur
author:
   Dave Johnson (updated for Atom 1.0)




Constructor Summary
public  Entry()
     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  ListgetAlternateLinks()
     Returns the entry alternate links.
public  ListgetAuthors()
     Returns the entry author.
public  ListgetCategories()
    
public  ListgetContents()
     Returns the entry contents.
public  ListgetContributors()
     Returns the entry contributors.
public  DategetCreated()
    
public  ObjectgetForeignMarkup()
     Returns foreign markup found at entry level.
public  StringgetId()
     Returns the entry ID.
public  DategetIssued()
     Returns the entry issued date (Atom 0.3, maps to getPublished() ).
public  DategetModified()
     Returns the entry modified date (Atom 0.3, maps to getUpdated() ).
public  ModulegetModule(String uri)
     Returns the module identified by a given URI.


Parameters:
  uri - the URI of the ModuleImpl.

public  ListgetModules()
     Returns the entry modules.
public  ListgetOtherLinks()
     Returns the entry non-alternate links.
public  DategetPublished()
    
public  StringgetRights()
    
public  FeedgetSource()
    
public  ContentgetSummary()
     Returns the entry summary.
public  StringgetTitle()
     Returns the entry title.
public  ContentgetTitleEx()
     Returns the entry title as a text construct.
public  DategetUpdated()
    
public  StringgetXmlBase()
    
public  inthashCode()
     Returns a hashcode value for the object.
public  voidsetAlternateLinks(List alternateLinks)
     Sets the entry alternate links.
public  voidsetAuthors(List authors)
     Sets the author of the entry.
public  voidsetCategories(List categories)
    
public  voidsetContents(List contents)
     Sets the entry contents.
public  voidsetContributors(List contributors)
     Sets the entry contributors.
public  voidsetCreated(Date created)
    
public  voidsetForeignMarkup(Object foreignMarkup)
     Sets foreign markup found at entry level.
public  voidsetId(String id)
     Sets the entry ID.
public  voidsetIssued(Date issued)
     Sets the entry issued date (Atom 0.3, maps to setPublished() ).
public  voidsetModified(Date modified)
     Sets the entry modified date (Atom 0.3, maps to setUpdated() ).
public  voidsetModules(List modules)
     Sets the entry modules.
public  voidsetOtherLinks(List otherLinks)
     Sets the entry non-alternate links.
public  voidsetPublished(Date published)
    
public  voidsetRights(String rights)
    
public  voidsetSource(Feed source)
    
public  voidsetSummary(Content summary)
     Sets the entry summary.
public  voidsetTitle(String title)
     Sets the entry title.
public  voidsetTitleEx(Content title)
     Sets the entry title as a text construct.
public  voidsetUpdated(Date updated)
    
public  voidsetXmlBase(String xmlBase)
    
public  StringtoString()
     Returns the String representation for the object.


Constructor Detail
Entry
public Entry()(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.




getAlternateLinks
public List getAlternateLinks()(Code)
Returns the entry alternate links.

a list of Link elements with the entry alternate links, an empty list if none.




getAuthors
public List getAuthors()(Code)
Returns the entry author.

the entry author, null if none.




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

Returns the categories.
since:
   Atom 1.0




getContents
public List getContents()(Code)
Returns the entry contents.

a list of Content elements with the entry contents,an empty list if none.




getContributors
public List getContributors()(Code)
Returns the entry contributors.

a list of Person elements with the entry contributors,an empty list if none.




getCreated
public Date getCreated()(Code)
Returns the entry created date (Atom 0.3 only)

the entry created date, null if none.




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

list of Opaque object to discourage use




getId
public String getId()(Code)
Returns the entry ID.

the entry ID, null if none.




getIssued
public Date getIssued()(Code)
Returns the entry issued date (Atom 0.3, maps to getPublished() ).

the entry issued date, null if none.




getModified
public Date getModified()(Code)
Returns the entry modified date (Atom 0.3, maps to getUpdated() ).

the entry modified date, 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 entry modules.

a list of ModuleImpl elements with the entry modules,an emtpy list if none.




getOtherLinks
public List getOtherLinks()(Code)
Returns the entry non-alternate links.

the list of Link elements with the entry non-alternate links to set,an empty list if none.




getPublished
public Date getPublished()(Code)
Returns the published

Returns the published.
since:
   Atom 1.0




getRights
public String getRights()(Code)
Returns the rights

Returns the rights.
since:
   Atom 1.0




getSource
public Feed getSource()(Code)
Returns the source

Returns the source.




getSummary
public Content getSummary()(Code)
Returns the entry summary.

the entry summary, null if none.




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

the entry title, null if none.




getTitleEx
public Content getTitleEx()(Code)
Returns the entry title as a text construct.

the entry title, null if none.




getUpdated
public Date getUpdated()(Code)
Returns the updated

Returns the updated.
since:
   Atom 1.0




getXmlBase
public String getXmlBase()(Code)
Returns the xmlBase

Returns the xmlBase.
since:
   Atom 1.0




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.




setAlternateLinks
public void setAlternateLinks(List alternateLinks)(Code)
Sets the entry alternate links.


Parameters:
  alternateLinks - the list of Link elements with the entry alternate links to set,an empty list or null if none.




setAuthors
public void setAuthors(List authors)(Code)
Sets the author of the entry.


Parameters:
  author - the author of the entry, null if none.




setCategories
public void setCategories(List categories)(Code)
Set the categories


Parameters:
  categories - The categories to set.
since:
   Atom 1.0




setContents
public void setContents(List contents)(Code)
Sets the entry contents.


Parameters:
  contents - the list of Content elements with the entry contents to set,an empty list or null if none.




setContributors
public void setContributors(List contributors)(Code)
Sets the entry contributors.


Parameters:
  contributors - the list of Person elements with the entry contributors to set,an empty list or null if none.




setCreated
public void setCreated(Date created)(Code)
Sets the entry created date (Atom 0.3 only)


Parameters:
  created - the entry created date, null if none.




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


Parameters:
  foreignMarkup - Opaque object to discourage use




setId
public void setId(String id)(Code)
Sets the entry ID.


Parameters:
  id - the entry ID, null if none.




setIssued
public void setIssued(Date issued)(Code)
Sets the entry issued date (Atom 0.3, maps to setPublished() ).


Parameters:
  issued - the entry issued date, null if none.




setModified
public void setModified(Date modified)(Code)
Sets the entry modified date (Atom 0.3, maps to setUpdated() ).


Parameters:
  modified - the entry modified date, null if none.




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


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




setOtherLinks
public void setOtherLinks(List otherLinks)(Code)
Sets the entry non-alternate links.


Parameters:
  otherLinks - the list Link elements with the entry non-alternate links to set,an empty list or null if none.




setPublished
public void setPublished(Date published)(Code)
Set the published


Parameters:
  published - The published to set.
since:
   Atom 1.0




setRights
public void setRights(String rights)(Code)
Set the rights


Parameters:
  rights - The rights to set.
since:
   Atom 1.0




setSource
public void setSource(Feed source)(Code)
Set the source


Parameters:
  source - The source to set.




setSummary
public void setSummary(Content summary)(Code)
Sets the entry summary.


Parameters:
  summary - the entry summary, null if none.




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


Parameters:
  title - the entry title, null if none.




setTitleEx
public void setTitleEx(Content title)(Code)
Sets the entry title as a text construct.


Parameters:
  title - the entry title, null if none.




setUpdated
public void setUpdated(Date updated)(Code)
Set the updated


Parameters:
  updated - The updated to set.
since:
   Atom 1.0




setXmlBase
public void setXmlBase(String xmlBase)(Code)
Set the xmlBase


Parameters:
  xmlBase - The xmlBase to set.
since:
   Atom 1.0




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.