short elemSymbol = in.readShort();
elemName = symbols.getName(elemSymbol);
localName = getLocalName(elemName);
nsURI = symbols.getNamespaceURI(elemSymbol);
int attrCount = in.readAttributeCount();
AttributesImpl attrs = new AttributesImpl();
for (int i = 0; i < attrCount; i++) {
short symbol = in.readShort();
short strLen = in.readShort();
byte[] b = new byte[strLen];