789790791792793794795
*/ public void parseAtom(ExtensionProfile extProfile, XmlEventSource source) throws IOException, ParseException { FeedHandler handler = new FeedHandler(extProfile); new EventSourceParser(handler, Namespaces.atom, "feed").parse(source); }
973974975976977978979980
*/ public void parseAtom(ExtensionProfile extProfile, XmlEventSource eventSource) throws IOException, ParseException { AtomHandler handler = new AtomHandler(extProfile); new EventSourceParser(handler, Namespaces.atom, "entry") .parse(eventSource); }
849850851852853854855
99799899910001001100210031004