View Javadoc

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