org.clapper.curn.parser |
|
Java Source File Name | Type | Comment |
ParserUtil.java | Class | Common utility routines that can be used by all parser implementations. |
ParseTest.java | Class | |
RSSChannel.java | Class | This abstract class defines a simplified view of an RSS channel,
providing only the methods necessary for curn to work.
curn uses the
RSSParserFactory class to get a specific
implementation of RSSParser, which returns an object that is a
subclass of this class. |
RSSContent.java | Class | Represents arbitrary content. |
RSSElement.java | Class | Abstract parent class of
RSSItem and
RSSChannel ,
containing various shared methods. |
RSSItem.java | Class | This abstract class defines a simplified view of an RSS item, providing
only the methods necessary for curn to work. |
RSSLink.java | Class | An RSSLink object describes a link to a URL, including any
metadata about the URL's content (if available). |
RSSLinkChangeListener.java | Interface | Implements a change listener for RSSLink objects. |
RSSLinkChangeListenerAdapter.java | Class | An stub, abstract
RSSLinkChangeListener that can be extended
to create simple listeners. |
RSSParser.java | Interface | This interface defines a simplified view of an RSS parser, providing
only the methods necessary for curn to work. |
RSSParserException.java | Class | A RSSParserException is thrown by parser implementations
to signify parser errors. |
RSSParserFactory.java | Class | This class provides a factory for retrieving a specific RSS parser
implementation. |