{
// The tags we care about are "ttl" and "item", nothing else.
if (localName.equals("ttl"))
{
// TTL value seen. Prepare to record it, as a string.
return new XMLStringContext(theStream,namespaceURI,localName,qName,atts);
}
else if (localName.equals("entry"))
{
// Item seen. We don't need any of the attributes etc., but we need to start a new context.
return new FeedItemContextClass(theStream,namespaceURI,localName,qName,atts);