org.clapper.curn

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 » curn » org.clapper.curn 
org.clapper.curn
Java Source File NameTypeComment
AbstractPersistentDataClient.javaClass Abstract class that implements the PersistentDataClient interface, providing stubs or simple versions of the methods.
Bootstrap.javaClass

Main program that bootstraps curn by adding new elements to the classpath on the fly.

BootstrapException.javaClass
CacheLoadedPlugIn.javaInterface This interface defines the methods that must be supported by plug-ins that wish to be notified immediately after curn loads its cache.
ConfiguredOutputHandler.javaClass Contains parsed configuration information for an output handler, including the class name and output handler name (which is really the section name).
Constants.javaClass Miscellaneous shared constants that don't logically belong anywhere in particular.
Curn.javaClass

curn: Customizable Utilitarian RSS Notifier.

curn is an RSS reader.

CurnConfig.javaClass
CurnException.javaClass CurnException is the base class for all exceptions thrown by this tool.
CurnFactory.javaClass

This static singleton class is used to allocate a new Curn object for RSS processing.

CurnUsageException.javaClass Thrown to indicate a curn usage exception (usually, something under the user's control), rather than a system problem.
CurnUtil.javaClass Miscellaneous utility methods that are shared among classes, but don't logically belong anywhere in particular.
DataPersister.javaClass Persists data to the curn persistent data store, whatever that may be.
DataPersisterFactory.javaClass Class that's used to create a DataPersister .
DateParseInfo.javaClass Used by curn when parsing dates.
FeedCache.javaClass Defines the in-memory format of the curn cache, and provides methods for saving and restoring the cache.
FeedCacheEntry.javaClass

Defines the contents of a cache entry.

FeedCacheException.javaClass Thrown during feed cache processing.
FeedConfigItemPlugIn.javaInterface This interface defines the methods that must be supported by plug-ins that wish intercept curn feed-section configuration items.
FeedDownloadDoneHandler.javaInterface Used as a callback when a FeedDownloadThread finishes downloading a feed.
FeedDownloadThread.javaClass
FeedException.javaClass FeedException is thrown when there's an error with a feed.
FeedInfo.javaClass

Contains data for one feed (or site).

ForceFeedDownloadPlugIn.javaInterface Defines the method to be implemented by plug-ins that want to force one or more feeds to be downloaded, even if they haven't changed.
MainConfigItemPlugIn.javaInterface This interface defines the methods that must be supported by plug-ins that wish intercept curn main-section configuration items.
MetaPlugIn.javaClass A MetaPlugIn object is basically a plug-in that contains all the loaded plug-ins.
OutputHandler.javaInterface This interface defines the methods that must be supported by a class that is to be plugged into curn as an output handler.
OutputHandlerConfigItemPlugIn.javaInterface This interface defines the methods that must be supported by plug-ins that wish intercept curn output handler-related configuration items.
OutputHandlerFactory.javaClass This class provides a factory for retrieving a specific OutputHandler implementation.
PersistentDataClient.javaInterface

A PersistentDataClient is a class that wants to persist its own data in the persisted curn data store.

PersistentFeedData.javaClass

A PersistentFeedData object contains feed cache data and related metadata for a single feed (or channel), in a form suitable for saving to and restoring from an external store.

PersistentFeedItemData.javaClass A PersistentFeedItemData object contains data and metadata about a perticular item within a feed, in a form suitable for saving to and restoring from an external store.
PersistentMetadataGroup.javaClass Contains one group of persistent metadata about a feed or an item.
PlugIn.javaInterface

This interface defines the methods that must be supported by a class that is to be plugged into curn as a generalized plug-in. curn plug-ins are invoked at various phases of curn execution.

Each plug-in phase is represented by its own Java interface, and each interface has exactly one method.

PlugInComparator.javaClass Compares plug-in classes based on their declared sort keys.
PlugInManager.javaClass Responsible for loading the plug-ins and creating the MetaPlugIn singleton that's used to run the loaded plug-ins.
PostConfigPlugIn.javaInterface This interface defines the methods that must be supported by plug-ins that wish to be invoked right after curn finishes loading its configuration file.
PostFeedDownloadPlugIn.javaInterface This interface defines the methods that must be supported by plug-ins that wish to be notified just after curn downloads a feed.
PostFeedOutputPlugIn.javaInterface This interface defines the methods that must be supported by plug-ins that wish to be notified after curn sends a parsed feed to an OutputHandler .
PostFeedParsePlugIn.javaInterface This interface defines the methods that must be supported by plug-ins that wish to be notified just after curn downloads a feed.
PostOutputHandlerFlushPlugIn.javaInterface This interface defines the methods that must be supported by plug-ins that wish to be notified after curn sends a parsed feed to an OutputHandler .
PostOutputPlugIn.javaInterface This interface defines the methods that must be supported by plug-ins that wish to be notified after curn has finished invoking all OutputHandler s.
PreCacheSavePlugIn.javaInterface This interface defines the methods that must be supported by plug-ins that wish to be notified just before curn saves its cache.
PreFeedDownloadPlugIn.javaInterface This interface defines the methods that must be supported by plug-ins that wish to be notified just before curn downloads a feed.
PreFeedOutputPlugIn.javaInterface This interface defines the methods that must be supported by plug-ins that wish to be notified just before curn sends a parsed feed to an OutputHandler .
ReadOnlyOutputHandler.javaClass Wrapper for an OutputHandler that renders it read-only, for passing to plug-ins.
ShutdownPlugIn.javaInterface This interface defines the methods that must be supported by plug-ins that wish to be invoked just before curn shuts down.
StartupPlugIn.javaInterface This interface defines the methods that must be supported by plug-ins that wish to be invoked at curn startup time.
Tool.javaClass

curn: Customizable Utilitarian RSS Notifier.

curn is an RSS reader.

UnknownSectionConfigItemPlugIn.javaInterface This interface defines the methods that must be supported by plug-ins that wish intercept curn configuration items in unrecognized sections.
Version.javaClass

Contains the software version for the org.clapper.util library.

XMLDataPersister.javaClass
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.