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

Channel
public class Channel extends WireFeed (Code)
Bean for RSS feeds.

It handles all RSS versions (0.9, 0.91, 0.92, 0.93, 0.94, 1.0 and 2.0) without losing information.


author:
   Alejandro Abdelnur



Field Summary
final public static  StringFRIDAY
    
final public static  StringMONDAY
    
final public static  StringSATURDAY
    
final public static  StringSUNDAY
    
final public static  StringTHURSDAY
    
final public static  StringTUESDAY
    
final public static  StringWEDNESDAY
    

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

Method Summary
public  ListgetCategories()
     Returns the channel categories.
public  CloudgetCloud()
     Returns the channel cloud.
public  StringgetCopyright()
     Returns the channel copyright.
public  StringgetDescription()
     Returns the channel description.
public  StringgetDocs()
     Returns the channel docs.
public  StringgetGenerator()
     Returns the channel generator.
public  ImagegetImage()
     Returns the channel image.
public  ListgetItems()
     Returns the channel items.
public  StringgetLanguage()
     Returns the channel language.
public  DategetLastBuildDate()
     Returns the channel last build date.
public  StringgetLink()
     Returns the channel link.
public  StringgetManagingEditor()
     Returns the channel managing editor.
public  ModulegetModule(String uri)
     Returns the module identified by a given URI.


Parameters:
  uri - the URI of the ModuleImpl.

public  ListgetModules()
     Returns the channel modules.
public  DategetPubDate()
     Returns the channel publishing date.
public  StringgetRating()
     Returns the channel rating.
public  ListgetSkipDays()
     Returns the channel skip days.
public  ListgetSkipHours()
     Returns the channel skip hours.
public  TextInputgetTextInput()
     Returns the channel text input.
public  StringgetTitle()
     Returns the channel title.
public  intgetTtl()
     Returns the channel time to live.
public  StringgetUri()
     Returns the channel uri.
public  StringgetWebMaster()
     Returns the channel web master.
public  voidsetCategories(List categories)
     Sets the channel categories.
public  voidsetCloud(Cloud cloud)
     Sets the channel cloud.
public  voidsetCopyright(String copyright)
     Sets the channel copyright.
public  voidsetDescription(String description)
     Sets the channel description.
public  voidsetDocs(String docs)
     Sets the channel docs.
public  voidsetGenerator(String generator)
     Sets the channel generator.
public  voidsetImage(Image image)
     Sets the channel image.
public  voidsetItems(List items)
     Sets the channel items.
public  voidsetLanguage(String language)
     Sets the channel language.
public  voidsetLastBuildDate(Date lastBuildDate)
     Sets the channel last build date.
public  voidsetLink(String link)
     Sets the channel link.
public  voidsetManagingEditor(String managingEditor)
     Sets the channel managing editor.
public  voidsetModules(List modules)
     Sets the channel modules.
public  voidsetPubDate(Date pubDate)
     Sets the channel publishing date.
public  voidsetRating(String rating)
     Sets the channel rating.
public  voidsetSkipDays(List skipDays)
     Sets the channel skip days.
public  voidsetSkipHours(List skipHours)
     Sets the channel skip hours.
public  voidsetTextInput(TextInput textInput)
     Sets the channel text input.
public  voidsetTitle(String title)
     Sets the channel title.
public  voidsetTtl(int ttl)
     Sets the channel time to live.
public  voidsetUri(String uri)
     Sets the channel uri.
public  voidsetWebMaster(String webMaster)
     Sets the channel web master.

Field Detail
FRIDAY
final public static String FRIDAY(Code)



MONDAY
final public static String MONDAY(Code)



SATURDAY
final public static String SATURDAY(Code)



SUNDAY
final public static String SUNDAY(Code)



THURSDAY
final public static String THURSDAY(Code)



TUESDAY
final public static String TUESDAY(Code)



WEDNESDAY
final public static String WEDNESDAY(Code)




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



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


Parameters:
  type - the type of the RSS feed.





Method Detail
getCategories
public List getCategories()(Code)
Returns the channel categories.

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




getCloud
public Cloud getCloud()(Code)
Returns the channel cloud.

the channel cloud, null if none.




getCopyright
public String getCopyright()(Code)
Returns the channel copyright.

the channel copyright, null if none.




getDescription
public String getDescription()(Code)
Returns the channel description.

the channel description, null if none.




getDocs
public String getDocs()(Code)
Returns the channel docs.

the channel docs, null if none.




getGenerator
public String getGenerator()(Code)
Returns the channel generator.

the channel generator, null if none.




getImage
public Image getImage()(Code)
Returns the channel image.

the channel image, null if none.




getItems
public List getItems()(Code)
Returns the channel items.

a list of Item elements with the channel items,an empty list if none.




getLanguage
public String getLanguage()(Code)
Returns the channel language.

the channel language, null if none.




getLastBuildDate
public Date getLastBuildDate()(Code)
Returns the channel last build date.

the channel last build date, null if none.




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

the channel link, null if none.




getManagingEditor
public String getManagingEditor()(Code)
Returns the channel managing editor.

the channel managing editor, 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 channel modules.

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




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

the channel publishing date, null if none.




getRating
public String getRating()(Code)
Returns the channel rating.

the channel rating, null if none.




getSkipDays
public List getSkipDays()(Code)
Returns the channel skip days.

a list of Day elements with the channel skip days,an empty list if none.




getSkipHours
public List getSkipHours()(Code)
Returns the channel skip hours.

a list of Integer elements with the channel skip hours,an empty list if none.




getTextInput
public TextInput getTextInput()(Code)
Returns the channel text input.

the channel text input, null if none.




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

the channel title, null if none.




getTtl
public int getTtl()(Code)
Returns the channel time to live.

the channel time to live, null if none.




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

the channel uri, null if none.




getWebMaster
public String getWebMaster()(Code)
Returns the channel web master.

the channel web master, null if none.




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


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




setCloud
public void setCloud(Cloud cloud)(Code)
Sets the channel cloud.


Parameters:
  cloud - the channel cloud to set, null if none.




setCopyright
public void setCopyright(String copyright)(Code)
Sets the channel copyright.


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




setDescription
public void setDescription(String description)(Code)
Sets the channel description.


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




setDocs
public void setDocs(String docs)(Code)
Sets the channel docs.


Parameters:
  docs - the channel docs to set, null if none.




setGenerator
public void setGenerator(String generator)(Code)
Sets the channel generator.


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




setImage
public void setImage(Image image)(Code)
Sets the channel image.


Parameters:
  image - the channel image to set, null if none.




setItems
public void setItems(List items)(Code)
Sets the channel items.


Parameters:
  items - the list of Item elements with the channel items to set,an empty list or null if none.




setLanguage
public void setLanguage(String language)(Code)
Sets the channel language.


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




setLastBuildDate
public void setLastBuildDate(Date lastBuildDate)(Code)
Sets the channel last build date.


Parameters:
  lastBuildDate - the channel last build date to set, null if none.




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


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




setManagingEditor
public void setManagingEditor(String managingEditor)(Code)
Sets the channel managing editor.


Parameters:
  managingEditor - the channel managing editor to set, null if none.




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


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




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


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




setRating
public void setRating(String rating)(Code)
Sets the channel rating.


Parameters:
  rating - the channel rating to set, null if none.




setSkipDays
public void setSkipDays(List skipDays)(Code)
Sets the channel skip days.


Parameters:
  skipDays - the list of Day elements with the channel skip days to set,an empty list or null if none.




setSkipHours
public void setSkipHours(List skipHours)(Code)
Sets the channel skip hours.


Parameters:
  skipHours - the list of Integer elements with the channel skip hours to set,an empty list or null if none.




setTextInput
public void setTextInput(TextInput textInput)(Code)
Sets the channel text input.


Parameters:
  textInput - the channel text input to set, null if none.




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


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




setTtl
public void setTtl(int ttl)(Code)
Sets the channel time to live.


Parameters:
  ttl - the channel time to live to set, null if none.




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


Parameters:
  uri - the channel uri, null if none.




setWebMaster
public void setWebMaster(String webMaster)(Code)
Sets the channel web master.


Parameters:
  webMaster - the channel web master to set, null if none.




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.