View Javadoc

1   package com.sun.syndication.io;
2   
3   /**
4    * Adds the ability to give a direct wire feed reference to plugin
5    * modules that need to call back to their wire feed to complete
6    * parsing of their particular namespace. Examples of such parsers
7    * include the SSE091Parser.
8    */
9   public interface DelegatingModuleParser extends ModuleParser {
10      /**
11       * Provides a parent wirefeed reference to this ModuleParser,
12       * or "plugin-in".
13       *
14       * @param feedParser the parent wirefeed parser for this plugin.
15       */
16      void setFeedParser(WireFeedParser feedParser);
17  }