final String tagName,
final Attributes atts) throws SAXException
{
if (isSameNamespace(uri) && "query".equals(tagName))
{
final XmlReadHandler queryReadHandler = new PropertyReadHandler();
queries.add(queryReadHandler);
return queryReadHandler;
}
return super.getHandlerForChild(uri, tagName, atts);