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