*
* @throws SAXException Thrown by handler to signal an error.
*/
public void notationDecl(String name, String publicId, String systemId)
throws SAXException {
XMLNotationDecl notationDecl = new XMLNotationDecl();
notationDecl.setValues(name,publicId,systemId);
int notationIndex = getNotationDeclIndex(name);
if (notationIndex == -1) {
notationIndex = createNotationDecl();
setNotationDecl(notationIndex, notationDecl);
}