Java Doc for Channel.java in  » Library » Apache-commons-betwixt-0.8-src » org » apache » commons » digester » 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 » Library » Apache commons betwixt 0.8 src » org.apache.commons.digester.rss 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.apache.commons.digester.rss.Channel

Channel
public class Channel implements Serializable(Code)

Implementation object representing a channel in the Rich Site Summary DTD, version 0.91. This class may be subclassed to further specialize its behavior.



Field Summary
protected  Stringcopyright
     The channel copyright (1-100 characters).
protected  Stringdescription
     The channel description (1-500 characters).
protected  Stringdocs
     The channel description file URL (1-500 characters).
protected  Imageimage
     The image describing this channel.
protected  ArrayListitems
     The set of items associated with this Channel.
protected  Stringlanguage
     The channel language (2-5 characters).
protected  StringlastBuildDate
     The channel last build date (1-100 characters).
protected  Stringlink
     The channel link (1-500 characters).
protected  StringmanagingEditor
     The managing editor (1-100 characters).
protected  StringpubDate
     The channel publication date (1-100 characters).
protected  Stringrating
     The channel rating (20-500 characters).
protected  ArrayListskipDays
     The set of skip days for this channel.
protected  ArrayListskipHours
     The set of skip hours for this channel.
protected  TextInputtextInput
     The text input description for this channel.
protected  Stringtitle
     The channel title (1-100 characters).
protected  doubleversion
     The RSS specification version number used to create this Channel.
protected  StringwebMaster
     The webmaster email address (1-100 characters).


Method Summary
public  voidaddItem(Item item)
     Add an additional item.
public  voidaddSkipDay(String skipDay)
     Add an additional skip day name.
public  voidaddSkipHour(String skipHour)
     Add an additional skip hour name.
public  Item[]findItems()
     Return the items for this channel.
public  String[]findSkipDays()
     Return the skip days for this channel.
public  String[]findSkipHours()
     Return the skip hours for this channel.
public  StringgetCopyright()
    
public  StringgetDescription()
    
public  StringgetDocs()
    
public  ImagegetImage()
    
public  Item[]getItems()
     Return the items for this channel.
public  StringgetLanguage()
    
public  StringgetLastBuildDate()
    
public  StringgetLink()
    
public  StringgetManagingEditor()
    
public  StringgetPubDate()
    
public  StringgetRating()
    
public  String[]getSkipDays()
     Return the skip days for this channel.
public  String[]getSkipHours()
     Return the skip hours for this channel.
public  TextInputgetTextInput()
    
public  StringgetTitle()
    
public  doublegetVersion()
    
public  StringgetWebMaster()
    
public  voidremoveItem(Item item)
     Remove an item for this channel.
public  voidremoveSkipDay(String skipDay)
     Remove a skip day for this channel.
public  voidremoveSkipHour(String skipHour)
     Remove a skip hour for this channel.
public  voidrender(OutputStream stream)
     Render this channel as XML conforming to the RSS 0.91 specification, to the specified output stream, with no indication of character encoding.
public  voidrender(OutputStream stream, String encoding)
     Render this channel as XML conforming to the RSS 0.91 specification, to the specified output stream, with the specified character encoding.
public  voidrender(Writer writer)
     Render this channel as XML conforming to the RSS 0.91 specification, to the specified writer, with no indication of character encoding.
public  voidrender(Writer writer, String encoding)
     Render this channel as XML conforming to the RSS 0.91 specification, to the specified writer, indicating the specified character encoding.
public  voidrender(PrintWriter writer)
     Render this channel as XML conforming to the RSS 0.91 specification, to the specified writer, with no indication of character encoding.
public  voidrender(PrintWriter writer, String encoding)
     Render this channel as XML conforming to the RSS 0.91 specification, to the specified writer, indicating the specified character encoding.
public  voidsetCopyright(String copyright)
    
public  voidsetDescription(String description)
    
public  voidsetDocs(String docs)
    
public  voidsetImage(Image image)
    
public  voidsetLanguage(String language)
    
public  voidsetLastBuildDate(String lastBuildDate)
    
public  voidsetLink(String link)
    
public  voidsetManagingEditor(String managingEditor)
    
public  voidsetPubDate(String pubDate)
    
public  voidsetRating(String rating)
    
public  voidsetTextInput(TextInput textInput)
    
public  voidsetTitle(String title)
    
public  voidsetVersion(double version)
    
public  voidsetWebMaster(String webMaster)
    

Field Detail
copyright
protected String copyright(Code)
The channel copyright (1-100 characters).



description
protected String description(Code)
The channel description (1-500 characters).



docs
protected String docs(Code)
The channel description file URL (1-500 characters).



image
protected Image image(Code)
The image describing this channel.



items
protected ArrayList items(Code)
The set of items associated with this Channel.



language
protected String language(Code)
The channel language (2-5 characters).



lastBuildDate
protected String lastBuildDate(Code)
The channel last build date (1-100 characters).



link
protected String link(Code)
The channel link (1-500 characters).



managingEditor
protected String managingEditor(Code)
The managing editor (1-100 characters).



pubDate
protected String pubDate(Code)
The channel publication date (1-100 characters).



rating
protected String rating(Code)
The channel rating (20-500 characters).



skipDays
protected ArrayList skipDays(Code)
The set of skip days for this channel.



skipHours
protected ArrayList skipHours(Code)
The set of skip hours for this channel.



textInput
protected TextInput textInput(Code)
The text input description for this channel.



title
protected String title(Code)
The channel title (1-100 characters).



version
protected double version(Code)
The RSS specification version number used to create this Channel.



webMaster
protected String webMaster(Code)
The webmaster email address (1-100 characters).





Method Detail
addItem
public void addItem(Item item)(Code)
Add an additional item.
Parameters:
  item - The item to be added



addSkipDay
public void addSkipDay(String skipDay)(Code)
Add an additional skip day name.
Parameters:
  skipDay - The skip day to be added



addSkipHour
public void addSkipHour(String skipHour)(Code)
Add an additional skip hour name.
Parameters:
  skipHour - The skip hour to be added



findItems
public Item[] findItems()(Code)
Return the items for this channel.



findSkipDays
public String[] findSkipDays()(Code)
Return the skip days for this channel.



findSkipHours
public String[] findSkipHours()(Code)
Return the skip hours for this channel.



getCopyright
public String getCopyright()(Code)



getDescription
public String getDescription()(Code)



getDocs
public String getDocs()(Code)



getImage
public Image getImage()(Code)



getItems
public Item[] getItems()(Code)
Return the items for this channel.



getLanguage
public String getLanguage()(Code)



getLastBuildDate
public String getLastBuildDate()(Code)



getLink
public String getLink()(Code)



getManagingEditor
public String getManagingEditor()(Code)



getPubDate
public String getPubDate()(Code)



getRating
public String getRating()(Code)



getSkipDays
public String[] getSkipDays()(Code)
Return the skip days for this channel.



getSkipHours
public String[] getSkipHours()(Code)
Return the skip hours for this channel.



getTextInput
public TextInput getTextInput()(Code)



getTitle
public String getTitle()(Code)



getVersion
public double getVersion()(Code)



getWebMaster
public String getWebMaster()(Code)



removeItem
public void removeItem(Item item)(Code)
Remove an item for this channel.
Parameters:
  item - The item to be removed



removeSkipDay
public void removeSkipDay(String skipDay)(Code)
Remove a skip day for this channel.
Parameters:
  skipDay - The skip day to be removed



removeSkipHour
public void removeSkipHour(String skipHour)(Code)
Remove a skip hour for this channel.
Parameters:
  skipHour - The skip hour to be removed



render
public void render(OutputStream stream)(Code)
Render this channel as XML conforming to the RSS 0.91 specification, to the specified output stream, with no indication of character encoding.
Parameters:
  stream - The output stream to write to



render
public void render(OutputStream stream, String encoding) throws UnsupportedEncodingException(Code)
Render this channel as XML conforming to the RSS 0.91 specification, to the specified output stream, with the specified character encoding.
Parameters:
  stream - The output stream to write to
Parameters:
  encoding - The character encoding to declare, or nullfor no declaration
exception:
  UnsupportedEncodingException - if the named encodingis not supported



render
public void render(Writer writer)(Code)
Render this channel as XML conforming to the RSS 0.91 specification, to the specified writer, with no indication of character encoding.
Parameters:
  writer - The writer to render output to



render
public void render(Writer writer, String encoding)(Code)
Render this channel as XML conforming to the RSS 0.91 specification, to the specified writer, indicating the specified character encoding.
Parameters:
  writer - The writer to render output to
Parameters:
  encoding - The character encoding to declare, or nullfor no declaration



render
public void render(PrintWriter writer)(Code)
Render this channel as XML conforming to the RSS 0.91 specification, to the specified writer, with no indication of character encoding.
Parameters:
  writer - The writer to render output to



render
public void render(PrintWriter writer, String encoding)(Code)
Render this channel as XML conforming to the RSS 0.91 specification, to the specified writer, indicating the specified character encoding.
Parameters:
  writer - The writer to render output to
Parameters:
  encoding - The character encoding to declare, or nullfor no declaration



setCopyright
public void setCopyright(String copyright)(Code)



setDescription
public void setDescription(String description)(Code)



setDocs
public void setDocs(String docs)(Code)



setImage
public void setImage(Image image)(Code)



setLanguage
public void setLanguage(String language)(Code)



setLastBuildDate
public void setLastBuildDate(String lastBuildDate)(Code)



setLink
public void setLink(String link)(Code)



setManagingEditor
public void setManagingEditor(String managingEditor)(Code)



setPubDate
public void setPubDate(String pubDate)(Code)



setRating
public void setRating(String rating)(Code)



setTextInput
public void setTextInput(TextInput textInput)(Code)



setTitle
public void setTitle(String title)(Code)



setVersion
public void setVersion(double version)(Code)



setWebMaster
public void setWebMaster(String webMaster)(Code)



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.