com.rometools.modules.psc.package.html Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rome-modules Show documentation
Show all versions of rome-modules Show documentation
Plugin collection for the ROME RSS and Atom Utilities
The newest version!
This is a ROME plug in that implements the Podlove Simple Chapters RSS extension.
Sample Usage:
final SyndFeedInput input = new SyndFeedInput();
final SyndFeed syndfeed = input.build(new XmlReader(feed.toURL()));
for (SyndEntry syndEntry : syndfeed.getEntries()) {
final Module module = syndEntry.getModule(PodloveSimpleChapterModule.URI);
final PodloveSimpleChapterModule chapterModule = ((PodloveSimpleChapterModule) module);
final List chapters = chapterModule.getChapters();
for (SimpleChapter c : chapters) {
System.out.println( c.toString );
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy