I've been toying around with Rome 1.0 today with scala and while i've been able to get the title, description, etc tabs it says that getContent() doesn't exist.
val url = "http://www.codecommit.com/blog/ruby/monads-are-not-metaphors/feed"
val feed: SyndFeed = new SyndFeedInput().build(new XmlReader(new URL(url)))
var rss_title = feed.getTitle()
var rss_ex = feed.getTitleEx.getValue()
var rss_desc = feed.getDescription()
var rss_content = feed.getContent()
<---- this one doesn't seem to exist though looking at the API it should work.
A feed represents multiple entries and the entries themselves have a getContents() method. Here's a complete working example (assumes you have rome 1.0 on the classpath):
Notice that the lack of generics in the Java API makes it a bit cumbersome to use, the library could use some pimping.