01: package com.sun.syndication.io;
02:
03: /**
04: * Adds the ability to give a direct wire feed generator reference to plugin
05: * modules that need to call back to their wire feed to complete
06: * generation of their particular namespace. Examples of such parsers
07: * include the SSE091Generator.
08: */
09: 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: }
|