Uses of Class
org.xml.sax.SAXException

Packages that use SAXException
org.apache.html.dom   
org.apache.xerces.framework   
org.apache.xerces.jaxp   
org.apache.xerces.readers   
org.apache.xml.serialize   
org.xml.sax   
org.xml.sax.ext   
org.xml.sax.helpers   
 

Uses of SAXException in org.apache.html.dom
 

Methods in org.apache.html.dom that throw SAXException
 void HTMLBuilder.startDocument()
           
 void HTMLBuilder.endDocument()
           
 void HTMLBuilder.startElement(java.lang.String tagName, AttributeList attrList)
           
 void HTMLBuilder.endElement(java.lang.String tagName)
           
 void HTMLBuilder.characters(java.lang.String text)
           
 void HTMLBuilder.characters(char[] text, int start, int length)
           
 void HTMLBuilder.ignorableWhitespace(char[] text, int start, int length)
           
 void HTMLBuilder.processingInstruction(java.lang.String target, java.lang.String instruction)
           
 

Uses of SAXException in org.apache.xerces.framework
 

Methods in org.apache.xerces.framework that throw SAXException
 void XMLParser.parse(InputSource source)
          Parses the specified input source.
 void XMLParser.parse(java.lang.String systemId)
          Parses the input source specified by the given system identifier.
 void XMLParser.setLocale(java.util.Locale locale)
          Set the locale to use for messages.
 

Uses of SAXException in org.apache.xerces.jaxp
 

Methods in org.apache.xerces.jaxp that throw SAXException
 Parser SAXParserImpl.getParser()
           
 Document DocumentBuilderImpl.parse(InputSource is)
           
 

Uses of SAXException in org.apache.xerces.readers
 

Methods in org.apache.xerces.readers that throw SAXException
 InputSource XMLCatalogHandler.resolveEntity(java.lang.String publicId, java.lang.String systemId)
          Resolves external entities.
 void XCatalog.loadCatalog(InputSource source)
          Loads the catalog stream specified by the given input source and appends the contents to the catalog.
 InputSource XCatalog.resolveEntity(java.lang.String publicId, java.lang.String systemId)
          Resolves external entities.
 

Uses of SAXException in org.apache.xml.serialize
 

Methods in org.apache.xml.serialize that throw SAXException
 void BaseMarkupSerializer.startDocument()
           
 void BaseMarkupSerializer.characters(char[] chars, int start, int length)
           
 void BaseMarkupSerializer.ignorableWhitespace(char[] chars, int start, int length)
           
 void BaseMarkupSerializer.processingInstruction(java.lang.String target, java.lang.String code)
           
 void BaseMarkupSerializer.comment(char[] chars, int start, int length)
           
 void BaseMarkupSerializer.endDocument()
          Called at the end of the document to wrap it up.
 void BaseMarkupSerializer.skippedEntity(java.lang.String name)
           
 void BaseMarkupSerializer.startPrefixMapping(java.lang.String prefix, java.lang.String uri)
           
 void BaseMarkupSerializer.endPrefixMapping(java.lang.String prefix)
           
 void BaseMarkupSerializer.startDTD(java.lang.String name, java.lang.String publicId, java.lang.String systemId)
           
 void BaseMarkupSerializer.elementDecl(java.lang.String name, java.lang.String model)
           
 void BaseMarkupSerializer.attributeDecl(java.lang.String eName, java.lang.String aName, java.lang.String type, java.lang.String valueDefault, java.lang.String value)
           
 void BaseMarkupSerializer.internalEntityDecl(java.lang.String name, java.lang.String value)
           
 void BaseMarkupSerializer.externalEntityDecl(java.lang.String name, java.lang.String publicId, java.lang.String systemId)
           
 void BaseMarkupSerializer.unparsedEntityDecl(java.lang.String name, java.lang.String publicId, java.lang.String systemId, java.lang.String notationName)
           
 void BaseMarkupSerializer.notationDecl(java.lang.String name, java.lang.String publicId, java.lang.String systemId)
           
 void XMLSerializer.startElement(java.lang.String namespaceURI, java.lang.String localName, java.lang.String rawName, Attributes attrs)
           
 void XMLSerializer.endElement(java.lang.String namespaceURI, java.lang.String localName, java.lang.String rawName)
           
 void XMLSerializer.startElement(java.lang.String tagName, AttributeList attrs)
           
 void XMLSerializer.endElement(java.lang.String tagName)
           
 void HTMLSerializer.startElement(java.lang.String namespaceURI, java.lang.String localName, java.lang.String rawName, Attributes attrs)
           
 void HTMLSerializer.endElement(java.lang.String namespaceURI, java.lang.String localName, java.lang.String rawName)
           
 void HTMLSerializer.characters(char[] chars, int start, int length)
           
 void HTMLSerializer.startElement(java.lang.String tagName, AttributeList attrs)
           
 void HTMLSerializer.endElement(java.lang.String tagName)
           
 void TextSerializer.startElement(java.lang.String namespaceURI, java.lang.String localName, java.lang.String rawName, Attributes attrs)
           
 void TextSerializer.endElement(java.lang.String namespaceURI, java.lang.String localName, java.lang.String rawName)
           
 void TextSerializer.startElement(java.lang.String tagName, AttributeList attrs)
           
 void TextSerializer.endElement(java.lang.String tagName)
           
 void TextSerializer.characters(char[] chars, int start, int length)
           
 

Uses of SAXException in org.xml.sax
 

Subclasses of SAXException in org.xml.sax
 class SAXNotRecognizedException
          Exception class for an unrecognized identifier.
 class SAXNotSupportedException
          Exception class for an unsupported operation.
 class SAXParseException
          Encapsulate an XML parse error or warning.
 

Methods in org.xml.sax that throw SAXException
 void DTDHandler.notationDecl(java.lang.String name, java.lang.String publicId, java.lang.String systemId)
          Receive notification of a notation declaration event.
 void DTDHandler.unparsedEntityDecl(java.lang.String name, java.lang.String publicId, java.lang.String systemId, java.lang.String notationName)
          Receive notification of an unparsed entity declaration event.
 void ContentHandler.startDocument()
          Receive notification of the beginning of a document.
 void ContentHandler.endDocument()
          Receive notification of the end of a document.
 void ContentHandler.startPrefixMapping(java.lang.String prefix, java.lang.String uri)
          Begin the scope of a prefix-URI Namespace mapping.
 void ContentHandler.endPrefixMapping(java.lang.String prefix)
          End the scope of a prefix-URI mapping.
 void ContentHandler.startElement(java.lang.String namespaceURI, java.lang.String localName, java.lang.String qName, Attributes atts)
          Receive notification of the beginning of an element.
 void ContentHandler.endElement(java.lang.String namespaceURI, java.lang.String localName, java.lang.String qName)
          Receive notification of the end of an element.
 void ContentHandler.characters(char[] ch, int start, int length)
          Receive notification of character data.
 void ContentHandler.ignorableWhitespace(char[] ch, int start, int length)
          Receive notification of ignorable whitespace in element content.
 void ContentHandler.processingInstruction(java.lang.String target, java.lang.String data)
          Receive notification of a processing instruction.
 void ContentHandler.skippedEntity(java.lang.String name)
          Receive notification of a skipped entity.
 InputSource EntityResolver.resolveEntity(java.lang.String publicId, java.lang.String systemId)
          Allow the application to resolve external entities.
 void ErrorHandler.warning(SAXParseException exception)
          Receive notification of a warning.
 void ErrorHandler.error(SAXParseException exception)
          Receive notification of a recoverable error.
 void ErrorHandler.fatalError(SAXParseException exception)
          Receive notification of a non-recoverable error.
 InputSource HandlerBase.resolveEntity(java.lang.String publicId, java.lang.String systemId)
          Deprecated. Resolve an external entity.
 void HandlerBase.startDocument()
          Deprecated. Receive notification of the beginning of the document.
 void HandlerBase.endDocument()
          Deprecated. Receive notification of the end of the document.
 void HandlerBase.startElement(java.lang.String name, AttributeList attributes)
          Deprecated. Receive notification of the start of an element.
 void HandlerBase.endElement(java.lang.String name)
          Deprecated. Receive notification of the end of an element.
 void HandlerBase.characters(char[] ch, int start, int length)
          Deprecated. Receive notification of character data inside an element.
 void HandlerBase.ignorableWhitespace(char[] ch, int start, int length)
          Deprecated. Receive notification of ignorable whitespace in element content.
 void HandlerBase.processingInstruction(java.lang.String target, java.lang.String data)
          Deprecated. Receive notification of a processing instruction.
 void HandlerBase.warning(SAXParseException e)
          Deprecated. Receive notification of a parser warning.
 void HandlerBase.error(SAXParseException e)
          Deprecated. Receive notification of a recoverable parser error.
 void HandlerBase.fatalError(SAXParseException e)
          Deprecated. Report a fatal XML parsing error.
 void DocumentHandler.startDocument()
          Deprecated. Receive notification of the beginning of a document.
 void DocumentHandler.endDocument()
          Deprecated. Receive notification of the end of a document.
 void DocumentHandler.startElement(java.lang.String name, AttributeList atts)
          Deprecated. Receive notification of the beginning of an element.
 void DocumentHandler.endElement(java.lang.String name)
          Deprecated. Receive notification of the end of an element.
 void DocumentHandler.characters(char[] ch, int start, int length)
          Deprecated. Receive notification of character data.
 void DocumentHandler.ignorableWhitespace(char[] ch, int start, int length)
          Deprecated. Receive notification of ignorable whitespace in element content.
 void DocumentHandler.processingInstruction(java.lang.String target, java.lang.String data)
          Deprecated. Receive notification of a processing instruction.
 void XMLReader.parse(InputSource input)
          Parse an XML document.
 void XMLReader.parse(java.lang.String systemId)
          Parse an XML document from a system identifier (URI).
 void Parser.setLocale(java.util.Locale locale)
          Deprecated. Allow an application to request a locale for errors and warnings.
 void Parser.parse(InputSource source)
          Deprecated. Parse an XML document.
 void Parser.parse(java.lang.String systemId)
          Deprecated. Parse an XML document from a system identifier (URI).
 

Uses of SAXException in org.xml.sax.ext
 

Methods in org.xml.sax.ext that throw SAXException
 void LexicalHandler.startDTD(java.lang.String name, java.lang.String publicId, java.lang.String systemId)
          Report the start of DTD declarations, if any.
 void LexicalHandler.endDTD()
          Report the end of DTD declarations.
 void LexicalHandler.startEntity(java.lang.String name)
          Report the beginning of some internal and external XML entities.
 void LexicalHandler.endEntity(java.lang.String name)
          Report the end of an entity.
 void LexicalHandler.startCDATA()
          Report the start of a CDATA section.
 void LexicalHandler.endCDATA()
          Report the end of a CDATA section.
 void LexicalHandler.comment(char[] ch, int start, int length)
          Report an XML comment anywhere in the document.
 void DeclHandler.elementDecl(java.lang.String name, java.lang.String model)
          Report an element type declaration.
 void DeclHandler.attributeDecl(java.lang.String eName, java.lang.String aName, java.lang.String type, java.lang.String valueDefault, java.lang.String value)
          Report an attribute type declaration.
 void DeclHandler.internalEntityDecl(java.lang.String name, java.lang.String value)
          Report an internal entity declaration.
 void DeclHandler.externalEntityDecl(java.lang.String name, java.lang.String publicId, java.lang.String systemId)
          Report a parsed external entity declaration.
 

Uses of SAXException in org.xml.sax.helpers
 

Methods in org.xml.sax.helpers that throw SAXException
 void ParserAdapter.parse(java.lang.String systemId)
          Parse an XML document.
 void ParserAdapter.parse(InputSource input)
          Parse an XML document.
 void ParserAdapter.startDocument()
          Adapt a SAX1 start document event.
 void ParserAdapter.endDocument()
          Adapt a SAX1 end document event.
 void ParserAdapter.startElement(java.lang.String qName, AttributeList qAtts)
          Adapt a SAX1 startElement event.
 void ParserAdapter.endElement(java.lang.String qName)
          Adapt a SAX1 end element event.
 void ParserAdapter.characters(char[] ch, int start, int length)
          Adapt a SAX1 characters event.
 void ParserAdapter.ignorableWhitespace(char[] ch, int start, int length)
          Adapt a SAX1 ignorable whitespace event.
 void ParserAdapter.processingInstruction(java.lang.String target, java.lang.String data)
          Adapt a SAX1 processing instruction event.
 void XMLFilterImpl.parse(InputSource input)
          Parse a document.
 void XMLFilterImpl.parse(java.lang.String systemId)
          Parse a document.
 InputSource XMLFilterImpl.resolveEntity(java.lang.String publicId, java.lang.String systemId)
          Filter an external entity resolution.
 void XMLFilterImpl.notationDecl(java.lang.String name, java.lang.String publicId, java.lang.String systemId)
          Filter a notation declaration event.
 void XMLFilterImpl.unparsedEntityDecl(java.lang.String name, java.lang.String publicId, java.lang.String systemId, java.lang.String notationName)
          Filter an unparsed entity declaration event.
 void XMLFilterImpl.startDocument()
          Filter a start document event.
 void XMLFilterImpl.endDocument()
          Filter an end document event.
 void XMLFilterImpl.startPrefixMapping(java.lang.String prefix, java.lang.String uri)
          Filter a start Namespace prefix mapping event.
 void XMLFilterImpl.endPrefixMapping(java.lang.String prefix)
          Filter an end Namespace prefix mapping event.
 void XMLFilterImpl.startElement(java.lang.String uri, java.lang.String localName, java.lang.String qName, Attributes atts)
          Filter a start element event.
 void XMLFilterImpl.endElement(java.lang.String uri, java.lang.String localName, java.lang.String qName)
          Filter an end element event.
 void XMLFilterImpl.characters(char[] ch, int start, int length)
          Filter a character data event.
 void XMLFilterImpl.ignorableWhitespace(char[] ch, int start, int length)
          Filter an ignorable whitespace event.
 void XMLFilterImpl.processingInstruction(java.lang.String target, java.lang.String data)
          Filter a processing instruction event.
 void XMLFilterImpl.skippedEntity(java.lang.String name)
          Filter a skipped entity event.
 void XMLFilterImpl.warning(SAXParseException e)
          Filter a warning event.
 void XMLFilterImpl.error(SAXParseException e)
          Filter an error event.
 void XMLFilterImpl.fatalError(SAXParseException e)
          Filter a fatal error event.
static XMLReader XMLReaderFactory.createXMLReader()
          Attempt to create an XML reader from a system property.
static XMLReader XMLReaderFactory.createXMLReader(java.lang.String className)
          Attempt to create an XML reader from a class name.
 void XMLReaderAdapter.setLocale(java.util.Locale locale)
          Set the locale for error reporting.
 void XMLReaderAdapter.parse(java.lang.String systemId)
          Parse the document.
 void XMLReaderAdapter.parse(InputSource input)
          Parse the document.
 void XMLReaderAdapter.startDocument()
          Start document event.
 void XMLReaderAdapter.endDocument()
          End document event.
 void XMLReaderAdapter.startElement(java.lang.String uri, java.lang.String localName, java.lang.String qName, Attributes atts)
          Adapt a SAX2 start element event.
 void XMLReaderAdapter.endElement(java.lang.String uri, java.lang.String localName, java.lang.String qName)
          Adapt a SAX2 end element event.
 void XMLReaderAdapter.characters(char[] ch, int start, int length)
          Adapt a SAX2 characters event.
 void XMLReaderAdapter.ignorableWhitespace(char[] ch, int start, int length)
          Adapt a SAX2 ignorable whitespace event.
 void XMLReaderAdapter.processingInstruction(java.lang.String target, java.lang.String data)
          Adapt a SAX2 processing instruction event.
 void XMLReaderAdapter.skippedEntity(java.lang.String name)
          Adapt a SAX2 skipped entity event.
 InputSource DefaultHandler.resolveEntity(java.lang.String publicId, java.lang.String systemId)
          Resolve an external entity.
 void DefaultHandler.notationDecl(java.lang.String name, java.lang.String publicId, java.lang.String systemId)
          Receive notification of a notation declaration.
 void DefaultHandler.unparsedEntityDecl(java.lang.String name, java.lang.String publicId, java.lang.String systemId, java.lang.String notationName)
          Receive notification of an unparsed entity declaration.
 void DefaultHandler.startDocument()
          Receive notification of the beginning of the document.
 void DefaultHandler.endDocument()
          Receive notification of the end of the document.
 void DefaultHandler.startPrefixMapping(java.lang.String prefix, java.lang.String uri)
          Receive notification of the start of a Namespace mapping.
 void DefaultHandler.endPrefixMapping(java.lang.String prefix)
          Receive notification of the end of a Namespace mapping.
 void DefaultHandler.startElement(java.lang.String uri, java.lang.String localName, java.lang.String qName, Attributes attributes)
          Receive notification of the start of an element.
 void DefaultHandler.endElement(java.lang.String uri, java.lang.String localName, java.lang.String qName)
          Receive notification of the end of an element.
 void DefaultHandler.characters(char[] ch, int start, int length)
          Receive notification of character data inside an element.
 void DefaultHandler.ignorableWhitespace(char[] ch, int start, int length)
          Receive notification of ignorable whitespace in element content.
 void DefaultHandler.processingInstruction(java.lang.String target, java.lang.String data)
          Receive notification of a processing instruction.
 void DefaultHandler.skippedEntity(java.lang.String name)
          Receive notification of a skipped entity.
 void DefaultHandler.warning(SAXParseException e)
          Receive notification of a parser warning.
 void DefaultHandler.error(SAXParseException e)
          Receive notification of a recoverable parser error.
 void DefaultHandler.fatalError(SAXParseException e)
          Report a fatal XML parsing error.
 

Constructors in org.xml.sax.helpers that throw SAXException
ParserAdapter()
          Construct a new parser adapter.
XMLReaderAdapter()
          Create a new adapter.
 



Copyright © 1999-2001 Apache XML Project. All Rights Reserved.