return count;
}
private AttributesImpl toSaxAttributes(XMLAttributes attributes)
{
AttributesImpl attrs = null;
if(attributes != null)
{
attrs = new AttributesImpl(attributes.getLength());
for(int i = 0; i < attributes.getLength(); ++i)
{
if(!"xmlns".equals(attributes.getPrefix(i)))
{
attrs.add(attributes.getURI(i),
attributes.getLocalName(i),
attributes.getQName(i),
attributes.getType(i),
attributes.getValue(i)
);