Attributes attrs) throws SAXException {
for (Iterator handlers = myTagHandlers.iterator(); handlers
.hasNext();) {
TagHandler next = (TagHandler) handlers.next();
try {
next.startElement(namespaceURI, sName, qName, attrs);
} catch (FileFormatException e) {
throw new RuntimeException(e);
}
}
}