}
// now get the descriptions of all the underlying RSS Items and
// then index them too
for (int j = 0; j < r.getItems().size(); j++) {
RSSItem theRSSItem = (RSSItem) r.getItems().get(j);
indexText.append(theRSSItem.getDescription());
indexText.append(" ");
String whichLink = null;
if (theRSSItem.getPermalink() != null)
whichLink = theRSSItem.getPermalink();
else
whichLink = theRSSItem.getLink();
if (whichLink != null) {
try {
if (theRSSItem.getDescription()!=null) {
theOutlinks.add(new Outlink(whichLink, theRSSItem.getDescription(), getConf()));
} else {
theOutlinks.add(new Outlink(whichLink, "", getConf()));
}
} catch (MalformedURLException e) {
if (LOG.isWarnEnabled()) {