166167168169170171172
* The XML feed document. * @throws IOException */ public Feed(Representation xmlFeed) throws IOException { super(xmlFeed); parse(new FeedContentReader(this)); }
181182183184185186187
* @throws IOException */ public Feed(Representation xmlFeed, FeedReader feedReader) throws IOException { super(xmlFeed); parse(new FeedContentReader(this, feedReader)); }