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


java.lang.Object
   com.sun.syndication.feed.synd.SyndEntryImpl

SyndEntryImpl
public class SyndEntryImpl implements Serializable,SyndEntry(Code)
Bean for entries of SyndFeedImpl feeds.


author:
   Alejandro Abdelnur



Field Summary
final public static  SetCONVENIENCE_PROPERTIES
     Unmodifiable Set containing the convenience properties of this class.

Constructor Summary
protected  SyndEntryImpl(Class beanClass, Set convenienceProperties)
     For implementations extending SyndEntryImpl to be able to use the ObjectBean functionality with extended interfaces.
public  SyndEntryImpl()
     Default constructor.

Method Summary
public  Objectclone()
     Creates a deep 'bean' clone of the object.
public  voidcopyFrom(Object obj)
    
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 entry author.
public  ListgetAuthors()
    
public  ListgetCategories()
     Returns the entry categories.
public  ListgetContents()
     Returns the entry contents.
public  ListgetContributors()
    
public  SyndContentgetDescription()
     Returns the entry description.
public  ListgetEnclosures()
     Returns the entry enclosures.
public  ObjectgetForeignMarkup()
     Returns foreign markup found at channel level.
public  ClassgetInterface()
    
public  StringgetLink()
     Returns the entry link.
public  ListgetLinks()
    
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  DategetPublishedDate()
     Returns the entry published date.
public  StringgetTitle()
     Returns the entry title.
public  SyndContentgetTitleEx()
     Returns the entry title as a text construct.
public  DategetUpdatedDate()
    
public  StringgetUri()
     Returns the entry URI.

How the entry URI maps to a concrete feed type (RSS or Atom) depends on the concrete feed type.

public  inthashCode()
     Returns a hashcode value for the object.
public  voidsetAuthor(String author)
     Sets the entry author.
public  voidsetAuthors(List authors)
    
public  voidsetCategories(List categories)
     Sets the entry categories.
public  voidsetContents(List contents)
     Sets the entry contents.
public  voidsetContributors(List contributors)
    
public  voidsetDescription(SyndContent description)
     Sets the entry description.
public  voidsetEnclosures(List enclosures)
     Sets the entry enclosures.
public  voidsetForeignMarkup(Object foreignMarkup)
     Sets foreign markup found at channel level.
public  voidsetLink(String link)
     Sets the entry link.
public  voidsetLinks(List links)
    
public  voidsetModules(List modules)
     Sets the entry modules.
public  voidsetPublishedDate(Date publishedDate)
     Sets the entry published date.
public  voidsetTitle(String title)
     Sets the entry title.
public  voidsetTitleEx(SyndContent title)
     Sets the entry title as a text construct.
public  voidsetUpdatedDate(Date updatedDate)
    
public  voidsetUri(String uri)
     Sets the entry URI.

How the entry URI maps to a concrete feed type (RSS or Atom) depends on the concrete feed type.

public  StringtoString()
     Returns the String representation for the object.

Field Detail
CONVENIENCE_PROPERTIES
final public static Set CONVENIENCE_PROPERTIES(Code)
Unmodifiable Set containing the convenience properties of this class.

Convenience properties are mapped to Modules, for cloning the convenience properties can be ignored as the will be copied as part of the module cloning.





Constructor Detail
SyndEntryImpl
protected SyndEntryImpl(Class beanClass, Set convenienceProperties)(Code)
For implementations extending SyndEntryImpl to be able to use the ObjectBean functionality with extended interfaces.


Parameters:
  beanClass -
Parameters:
  convenienceProperties - set containing the convenience properties of the SyndEntryImpl(the are ignored during cloning, check CloneableBean for details).




SyndEntryImpl
public SyndEntryImpl()(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.




copyFrom
public void copyFrom(Object obj)(Code)



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 entry author.

This method is a convenience method, it maps to the Dublin Core module creator.

the entry author, null if none.




getAuthors
public List getAuthors()(Code)



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

a list of SyndCategoryImpl elements with the entry categories,an empty list if none.




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

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




getContributors
public List getContributors()(Code)



getDescription
public SyndContent getDescription()(Code)
Returns the entry description.

the entry description, null if none.




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

a list of SyndEnclosure elements with the entry enclosures,an empty list if none.




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

list of JDOM nodes containing channel-level foreign markup,an empty list if none.




getInterface
public Class getInterface()(Code)



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

the entry link, null if none.




getLinks
public List getLinks()(Code)
Returns the links

Returns the links.




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 empty list if none.




getPublishedDate
public Date getPublishedDate()(Code)
Returns the entry published date.

This method is a convenience method, it maps to the Dublin Core module date.

the entry published date, null if none.




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

the entry title, null if none.




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

the entry title, null if none.




getUpdatedDate
public Date getUpdatedDate()(Code)
Returns the updatedDate

Returns the updatedDate.




getUri
public String getUri()(Code)
Returns the entry URI.

How the entry URI maps to a concrete feed type (RSS or Atom) depends on the concrete feed type. This is explained in detail in Rome documentation, Feed and entry URI mapping.

The returned URI is a normalized URI as specified in RFC 2396bis.

the entry 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 entry author.

This method is a convenience method, it maps to the Dublin Core module creator.


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




setAuthors
public void setAuthors(List authors)(Code)



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

This method is a convenience method, it maps to the Dublin Core module subjects.


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




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


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




setContributors
public void setContributors(List contributors)(Code)



setDescription
public void setDescription(SyndContent description)(Code)
Sets the entry description.


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




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


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




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


Parameters:
  foreignMarkup - list of JDOM nodes containing channel-level foreign markup,an empty list if none.




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


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




setLinks
public void setLinks(List links)(Code)
Set the links


Parameters:
  links - The links to set.




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.




setPublishedDate
public void setPublishedDate(Date publishedDate)(Code)
Sets the entry published date.

This method is a convenience method, it maps to the Dublin Core module date.


Parameters:
  publishedDate - the entry published date to set, null if none.




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


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




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


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




setUpdatedDate
public void setUpdatedDate(Date updatedDate)(Code)
Set the updatedDate


Parameters:
  updatedDate - The updatedDate to set.




setUri
public void setUri(String uri)(Code)
Sets the entry URI.

How the entry URI maps to a concrete feed type (RSS or Atom) depends on the concrete feed type. This is explained in detail in Rome documentation, Feed and entry URI mapping.


Parameters:
  uri - the entry 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.