}
Element e = eFeed.getChild("title", getAtomNamespace());
if (e != null)
{
Content c = new Content();
c.setValue(parseTextConstructToString(e));
c.setType(e.getAttributeValue("type")); //, Namespace.XML_NAMESPACE));
feed.setTitleEx(c);
}
List<Element> eList = getChildren(eFeed, "link");
feed.setAlternateLinks(parseAlternateLinks(feed, null, baseURI, eList));
feed.setOtherLinks(parseOtherLinks(feed, null, baseURI, eList));
List cList = eFeed.getChildren("category", getAtomNamespace());
feed.setCategories(parseCategories(baseURI, cList));
eList = getChildren(eFeed, "author");
if (eList.size() > 0)
{
feed.setAuthors(parsePersons(baseURI, eList));
}
eList = getChildren(eFeed, "contributor");
if (eList.size() > 0)
{
feed.setContributors(parsePersons(baseURI, eList));
}
e = eFeed.getChild("subtitle", getAtomNamespace());
if (e != null)
{
Content subtitle = new Content();
subtitle.setValue(parseTextConstructToString(e));
subtitle.setType(e.getAttributeValue("type")); //, Namespace.XML_NAMESPACE));
feed.setSubtitle(subtitle);
}
e = eFeed.getChild("id", getAtomNamespace());
if (e != null)