feedInfo.getCategories().add(cat);
}
}
} else if (element.getName().equals("item")) {
EntryInformationImpl entryInfo = new EntryInformationImpl();
module = entryInfo;
//Now I am going to get the item specific tags
Element duration = element.getChild("duration", ns);
if (duration != null && duration.getValue() != null ) {
Duration dur = new Duration(duration.getValue().trim());
entryInfo.setDuration(dur);
}
}
if (module != null) {
//All these are common to both Channel and Item
Element author = element.getChild("author", ns);