Java Doc for Feed.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.WireFeed
      com.sun.syndication.feed.atom.Feed

Feed
public class Feed extends WireFeed (Code)
Bean for Atom feeds.

It handles Atom feeds version 0.3 without loosing any feed information.


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




Constructor Summary
public  Feed()
     Default constructor, for bean cloning purposes only.
public  Feed(String type)
     Feed Constructor.

Method Summary
public  ListgetAlternateLinks()
     Returns the feed alternate links.
public  ListgetAuthors()
     Returns the feed author.
public  ListgetCategories()
    
public  ListgetContributors()
     Returns the feed contributors.
public  StringgetCopyright()
     Returns the feed copyright (Atom 0.3, maps to getRights() ).
public  ListgetEntries()
     Returns the feed entries.
public  GeneratorgetGenerator()
     Returns the feed generator.
public  StringgetIcon()
    
public  StringgetId()
     Returns the feed ID.
public  ContentgetInfo()
    
public  StringgetLanguage()
    
public  StringgetLogo()
    
public  DategetModified()
     Returns the feed 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 feed modules.
public  ListgetOtherLinks()
     Returns the feed other links (non-alternate ones).
public  StringgetRights()
    
public  ContentgetSubtitle()
    
public  ContentgetTagline()
     Returns the feed tag line (Atom 0.3, maps to getSubtitle() ).
public  StringgetTitle()
     Returns the feed title.
public  ContentgetTitleEx()
     Returns the feed title.
public  DategetUpdated()
    
public  StringgetXmlBase()
    
public  voidsetAlternateLinks(List alternateLinks)
     Sets the feed alternate links.
public  voidsetAuthors(List authors)
     Sets the feed author.
public  voidsetCategories(List categories)
    
public  voidsetContributors(List contributors)
     Sets the feed contributors.
public  voidsetCopyright(String copyright)
     Sets the feed copyright (Atom 0.3, maps to setRights() ).
public  voidsetEntries(List entries)
     Sets the feed entries.
public  voidsetGenerator(Generator generator)
     Sets the feed generator.
public  voidsetIcon(String icon)
    
public  voidsetId(String id)
     Sets the feed ID.
public  voidsetInfo(Content info)
    
public  voidsetLanguage(String language)
    
public  voidsetLogo(String logo)
    
public  voidsetModified(Date modified)
     Sets the feed modified date (Atom 0.3, maps to setUpdated() ).
public  voidsetModules(List modules)
     Sets the feed moduless.
public  voidsetOtherLinks(List otherLinks)
     Sets the feed other links (non-alternate ones).
public  voidsetRights(String rights)
    
public  voidsetSubtitle(Content subtitle)
    
public  voidsetTagline(Content tagline)
     Sets the feed tagline (Atom 0.3, maps to getSubtitle() ).
public  voidsetTitle(String title)
     Sets the feed title.
public  voidsetTitleEx(Content title)
     Sets the feed title.
public  voidsetUpdated(Date updated)
    
public  voidsetXmlBase(String xmlBase)
    


Constructor Detail
Feed
public Feed()(Code)
Default constructor, for bean cloning purposes only.



Feed
public Feed(String type)(Code)
Feed Constructor. All properties, except the type, are set to null.


Parameters:
  type - the type of the Atom feed.





Method Detail
getAlternateLinks
public List getAlternateLinks()(Code)
Returns the feed alternate links.

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




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

the feed author, null if none.




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

Returns the categories.
since:
   Atom 1.0




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

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




getCopyright
public String getCopyright()(Code)
Returns the feed copyright (Atom 0.3, maps to getRights() ).

the feed copyright, null if none.




getEntries
public List getEntries()(Code)
Returns the feed entries.

a list of Entry elements with the feed entries,an empty list if none.




getGenerator
public Generator getGenerator()(Code)
Returns the feed generator.

the feed generator, null if none.




getIcon
public String getIcon()(Code)
Returns the icon

Returns the icon.
since:
   Atom 1.0




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

the feed ID, null if none.




getInfo
public Content getInfo()(Code)
Returns the feed info (Atom 0.3 only)

the feed info, null if none.




getLanguage
public String getLanguage()(Code)
Returns the feed language (Atom 0.3 only)

the feed language, null if none.




getLogo
public String getLogo()(Code)
Returns the logo

Returns the logo.
since:
   Atom 1.0




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

the feed 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 feed modules.

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




getOtherLinks
public List getOtherLinks()(Code)
Returns the feed other links (non-alternate ones).

a list of Link elements with the feed other links (non-alternate ones),an empty list if none.




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

Returns the rights.
since:
   Atom 1.0




getSubtitle
public Content getSubtitle()(Code)
Returns the subtitle

Returns the subtitle.
since:
   Atom 1.0




getTagline
public Content getTagline()(Code)
Returns the feed tag line (Atom 0.3, maps to getSubtitle() ).

the feed tag line, null if none.




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

the feed title, null if none.




getTitleEx
public Content getTitleEx()(Code)
Returns the feed title.

the feed 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




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


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




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


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




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


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




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


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




setCopyright
public void setCopyright(String copyright)(Code)
Sets the feed copyright (Atom 0.3, maps to setRights() ).


Parameters:
  copyright - the feed copyright to set, null if none.




setEntries
public void setEntries(List entries)(Code)
Sets the feed entries.


Parameters:
  entries - the list of Entry elements with the feed entries to set,an empty list or null if none.




setGenerator
public void setGenerator(Generator generator)(Code)
Sets the feed generator.


Parameters:
  generator - the feed generator to set, null if none.




setIcon
public void setIcon(String icon)(Code)
Set the icon


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




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


Parameters:
  id - the feed ID to set, null if none.




setInfo
public void setInfo(Content info)(Code)
Sets the feed info (Atom 0.3 only)


Parameters:
  info - the feed info to set, null if none.




setLanguage
public void setLanguage(String language)(Code)
Sets the feed language (Atom 0.3 only)


Parameters:
  language - the feed language to set, null if none.




setLogo
public void setLogo(String logo)(Code)
Set the logo


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




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


Parameters:
  modified - the feed modified date to set, null if none.




setModules
public void setModules(List modules)(Code)
Sets the feed moduless.


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




setOtherLinks
public void setOtherLinks(List otherLinks)(Code)
Sets the feed other links (non-alternate ones).


Parameters:
  otherLinks - the list of Link elements with the feed other links (non-alternate ones) to set,an empty list or null if none.




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


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




setSubtitle
public void setSubtitle(Content subtitle)(Code)
Set the subtitle


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




setTagline
public void setTagline(Content tagline)(Code)
Sets the feed tagline (Atom 0.3, maps to getSubtitle() ).


Parameters:
  tagline - the feed tagline to set, null if none.




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


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




setTitleEx
public void setTitleEx(Content title)(Code)
Sets the feed title.


Parameters:
  title - the feed title to set, 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




Methods inherited from com.sun.syndication.feed.WireFeed
public Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object other)(Code)(Java Doc)
public String getEncoding()(Code)(Java Doc)
public String getFeedType()(Code)(Java Doc)
public Object getForeignMarkup()(Code)(Java Doc)
public Module getModule(String uri)(Code)(Java Doc)
public List getModules()(Code)(Java Doc)
public int hashCode()(Code)(Java Doc)
public void setEncoding(String encoding)(Code)(Java Doc)
public void setFeedType(String feedType)(Code)(Java Doc)
public void setForeignMarkup(Object foreignMarkup)(Code)(Java Doc)
public void setModules(List modules)(Code)(Java Doc)
public String toString()(Code)(Java Doc)

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.