rome/rome/src/site/apt/Modules/Content.apt

30 lines
533 B
Text

-----
Content
-----
mkurz
-----
2011-08-16 05:18:31.894
-----
Content
This plug in is for use content:encoded in feeds.
*Sample Usage
+------+
SyndFeedInput input = new SyndFeedInput();
SyndFeed syndfeed = input.build(new XmlReader(feed.toURL()));
Module module = syndfeed.getModule("http://purl.org/rss/1.0/modules/content/");
ContentModule content = (ContentModule) module;
Iterator it = content.getEncodeds().iterator();
System.out.println( it.next() );
+------+
*Changes
**0.4
Initial move to the ROME project.