Free Download - Stylus Studio, The World's Best XML IDE!


Uses of Class
org.xml.sax.SAXException

Packages that use SAXException
javax.xml.parsers Provides classes allowing the processing of XML documents. 
org.apache.xalan.lib Extension elements and functions shipped with Xalan-Java, including EXSLT functions. 
org.apache.xalan.lib.sql Provides extension functions for connecting to a JDBC data source, executing a query, and working incrementally through a "streamable" result set. 
org.apache.xalan.processor Parses an XSLT stylesheet document (which may include and import other stylesheet documents) and produces a StylesheetRoot (a TRaX Templates object). 
org.apache.xalan.serialize   
org.apache.xalan.transformer In charge of run-time transformations and the production of result trees. 
org.apache.xalan.xsltc   
org.apache.xalan.xsltc.compiler   
org.apache.xalan.xsltc.dom   
org.apache.xalan.xsltc.runtime   
org.apache.xalan.xsltc.trax   
org.apache.xml.dtm   
org.apache.xml.dtm.ref   
org.apache.xml.dtm.ref.dom2dtm   
org.apache.xml.dtm.ref.sax2dtm   
org.apache.xml.serializer Processes SAX events into streams. 
org.apache.xml.utils Implementation of Xalan utility classes. 
org.apache.xpath Implementation of XPath; for the most part, only classes meant for public use are found at this root level of the XPath packages. 
org.apache.xpath.axes Implementation of XPath LocationPath support -- primary classes are LocPathIterator and UnionPathIterator. 
org.apache.xpath.functions Implements XPath functions -- each function is derived from Function, FunctionOneArg, Function2Args, etc, with number-of-arguments checking being applied mainly at compile time -- this package only implements XPath functions, XSLT functions are found in the "templates" package. 
org.apache.xpath.objects Implementation of XPath polymorphic type objects -- this package will grow as XPath objects are expanded to support XML Schema data types. 
org.xml.sax This package provides the core SAX APIs. 
org.xml.sax.ext This package contains interfaces to optional SAX2 handlers. 
org.xml.sax.helpers This package contains "helper" classes, including support for bootstrapping SAX-based applications. 
 

Uses of SAXException in javax.xml.parsers
 

Methods in javax.xml.parsers that throw SAXException
 Document DocumentBuilder.parse(java.io.InputStream is)
          Parse the content of the given InputStream as an XML document and return a new DOM Document object.
 Document DocumentBuilder.parse(java.io.InputStream is, java.lang.String systemId)
          Parse the content of the given InputStream as an XML document and return a new DOM Document object.
 Document DocumentBuilder.parse(java.lang.String uri)
          Parse the content of the given URI as an XML document and return a new DOM Document object.
 Document DocumentBuilder.parse(java.io.File f)
          Parse the content of the given file as an XML document and return a new DOM Document object.
abstract  Document DocumentBuilder.parse(InputSource is)
          Parse the content of the given input source as an XML document and return a new DOM Document object.
abstract  SAXParser SAXParserFactory.newSAXParser()
          Creates a new instance of a SAXParser using the currently configured factory parameters.
 void SAXParser.parse(java.io.InputStream is, HandlerBase hb)
          Parse the content of the given InputStream instance as XML using the specified HandlerBase.
 void SAXParser.parse(java.io.InputStream is, HandlerBase hb, java.lang.String systemId)
          Parse the content of the given InputStream instance as XML using the specified HandlerBase.
 void SAXParser.parse(java.io.InputStream is, DefaultHandler dh)
          Parse the content of the given InputStream instance as XML using the specified DefaultHandler.
 void SAXParser.parse(java.io.InputStream is, DefaultHandler dh, java.lang.String systemId)
          Parse the content of the given InputStream instance as XML using the specified DefaultHandler.
 void SAXParser.parse(java.lang.String uri, HandlerBase hb)
          Parse the content described by the giving Uniform Resource Identifier (URI) as XML using the specified HandlerBase.
 void SAXParser.parse(java.lang.String uri, DefaultHandler dh)
          Parse the content described by the giving Uniform Resource Identifier (URI) as XML using the specified DefaultHandler.
 void SAXParser.parse(java.io.File f, HandlerBase hb)
          Parse the content of the file specified as XML using the specified HandlerBase.
 void SAXParser.parse(java.io.File f, DefaultHandler dh)
          Parse the content of the file specified as XML using the specified DefaultHandler.
 void SAXParser.parse(InputSource is, HandlerBase hb)
          Parse the content given InputSource as XML using the specified HandlerBase.
 void SAXParser.parse(InputSource is, DefaultHandler dh)
          Parse the content given InputSource as XML using the specified DefaultHandler.
abstract  Parser SAXParser.getParser()
          Returns the SAX parser that is encapsultated by the implementation of this class.
abstract  XMLReader SAXParser.getXMLReader()
          Returns the XMLReader that is encapsulated by the implementation of this class.
 

Uses of SAXException in org.apache.xalan.lib
 

Methods in org.apache.xalan.lib that throw SAXException
 void PipeDocument.pipeDocument(XSLProcessorContext context, ElemExtensionCall elem)
          Extension element for piping an XML document through a series of 1 or more transformations.
 void PipeDocument.usePipe(java.util.Vector vTHandler, java.lang.String source, java.lang.String target)
          Uses a Vector of TransformerHandlers to pipe XML input document through a series of 1 or more transformations.
 

Uses of SAXException in org.apache.xalan.lib.sql
 

Methods in org.apache.xalan.lib.sql that throw SAXException
 void DTMDocument.dispatchToEvents(int parm1, ContentHandler parm2)
           
 void DTMDocument.dispatchCharactersEvents(int nodeHandle, ContentHandler ch, boolean normalize)
           
 void DTMDocument.CharacterNodeHandler.characters(Node node)
           
 

Uses of SAXException in org.apache.xalan.processor
 

Methods in org.apache.xalan.processor that throw SAXException
 InputSource XSLTElementProcessor.resolveEntity(StylesheetHandler handler, java.lang.String publicId, java.lang.String systemId)
          Resolve an external entity.
 void XSLTElementProcessor.startNonText(StylesheetHandler handler)
          Receive notification of the start of the non-text event.
 void XSLTElementProcessor.startElement(StylesheetHandler handler, java.lang.String uri, java.lang.String localName, java.lang.String rawName, Attributes attributes)
          Receive notification of the start of an element.
 void XSLTElementProcessor.endElement(StylesheetHandler handler, java.lang.String uri, java.lang.String localName, java.lang.String rawName)
          Receive notification of the end of an element.
 void XSLTElementProcessor.characters(StylesheetHandler handler, char[] ch, int start, int length)
          Receive notification of character data inside an element.
 void XSLTElementProcessor.ignorableWhitespace(StylesheetHandler handler, char[] ch, int start, int length)
          Receive notification of ignorable whitespace in element content.
 void XSLTElementProcessor.processingInstruction(StylesheetHandler handler, java.lang.String target, java.lang.String data)
          Receive notification of a processing instruction.
 void XSLTElementProcessor.skippedEntity(StylesheetHandler handler, java.lang.String name)
          Receive notification of a skipped entity.
 void ProcessorTemplateElem.startElement(StylesheetHandler handler, java.lang.String uri, java.lang.String localName, java.lang.String rawName, Attributes attributes)
          Receive notification of the start of an element.
 void ProcessorTemplateElem.endElement(StylesheetHandler handler, java.lang.String uri, java.lang.String localName, java.lang.String rawName)
          Receive notification of the end of an element.
 InputSource StylesheetHandler.resolveEntity(java.lang.String publicId, java.lang.String systemId)
          Resolve an external entity.
 void StylesheetHandler.startDocument()
          Receive notification of the beginning of the document.
 void StylesheetHandler.endDocument()
          Receive notification of the end of the document.
 void StylesheetHandler.startPrefixMapping(java.lang.String prefix, java.lang.String uri)
          Receive notification of the start of a Namespace mapping.
 void StylesheetHandler.endPrefixMapping(java.lang.String prefix)
          Receive notification of the end of a Namespace mapping.
 void StylesheetHandler.startElement(java.lang.String uri, java.lang.String localName, java.lang.String rawName, Attributes attributes)
          Receive notification of the start of an element.
 void StylesheetHandler.endElement(java.lang.String uri, java.lang.String localName, java.lang.String rawName)
          Receive notification of the end of an element.
 void StylesheetHandler.characters(char[] ch, int start, int length)
          Receive notification of character data inside an element.
 void StylesheetHandler.ignorableWhitespace(char[] ch, int start, int length)
          Receive notification of ignorable whitespace in element content.
 void StylesheetHandler.processingInstruction(java.lang.String target, java.lang.String data)
          Receive notification of a processing instruction.
 void StylesheetHandler.skippedEntity(java.lang.String name)
          Receive notification of a skipped entity.
 void StylesheetHandler.warn(java.lang.String msg, java.lang.Object[] args)
          Warn the user of an problem.
 void StylesheetHandler.warning(SAXParseException e)
          Receive notification of a XSLT processing warning.
 void StylesheetHandler.error(SAXParseException e)
          Receive notification of a recoverable XSLT processing error.
 void StylesheetHandler.fatalError(SAXParseException e)
          Report a fatal XSLT processing error.
 void ProcessorLRE.startElement(StylesheetHandler handler, java.lang.String uri, java.lang.String localName, java.lang.String rawName, Attributes attributes)
          Receive notification of the start of an element.
 void ProcessorLRE.endElement(StylesheetHandler handler, java.lang.String uri, java.lang.String localName, java.lang.String rawName)
          Receive notification of the end of an element.
 void ProcessorExsltFunction.startElement(StylesheetHandler handler, java.lang.String uri, java.lang.String localName, java.lang.String rawName, Attributes attributes)
          Start an ElemExsltFunction.
 void ProcessorExsltFunction.endElement(StylesheetHandler handler, java.lang.String uri, java.lang.String localName, java.lang.String rawName)
          End an ElemExsltFunction, and verify its validity.
 void ProcessorExsltFunction.validate(ElemTemplateElement elem, StylesheetHandler handler)
          Non-recursive traversal of FunctionElement tree based on TreeWalker to verify that there are no literal result elements except within a func:result element and that the func:result element does not contain any following siblings except xsl:fallback.
 void ProcessorExsltFuncResult.startElement(StylesheetHandler handler, java.lang.String uri, java.lang.String localName, java.lang.String rawName, Attributes attributes)
          Verify that the func:result element does not appear within a variable, parameter, or another func:result, and that it belongs to a func:function element.
 void ProcessorText.endElement(StylesheetHandler handler, java.lang.String uri, java.lang.String localName, java.lang.String rawName)
          Receive notification of the end of an element.
 void ProcessorCharacters.startNonText(StylesheetHandler handler)
          Receive notification of the start of the non-text event.
 void ProcessorCharacters.characters(StylesheetHandler handler, char[] ch, int start, int length)
          Receive notification of character data inside an element.
 void ProcessorCharacters.endElement(StylesheetHandler handler, java.lang.String uri, java.lang.String localName, java.lang.String rawName)
          Receive notification of the end of an element.
 

Uses of SAXException in org.apache.xalan.serialize
 

Methods in org.apache.xalan.serialize that throw SAXException
static void SerializerUtils.outputResultTreeFragment(SerializationHandler handler, XObject obj, XPathContext support)
          Given a result tree fragment, walk the tree and output it to the SerializationHandler.
static void SerializerUtils.ensureNamespaceDeclDeclared(SerializationHandler handler, DTM dtm, int namespace)
          This function checks to make sure a given prefix is really declared.
 

Uses of SAXException in org.apache.xalan.transformer
 

Methods in org.apache.xalan.transformer that throw SAXException
 void TreeWalker2Result.traverse(int pos)
          Perform a pre-order traversal non-recursive style.
 void TransformerImpl.waitTransformThread()
          Used by SourceTreeHandler to wait until the transform completes
 InputSource TransformerHandlerImpl.resolveEntity(java.lang.String publicId, java.lang.String systemId)
          Filter an external entity resolution.
 void TransformerHandlerImpl.notationDecl(java.lang.String name, java.lang.String publicId, java.lang.String systemId)
          Filter a notation declaration event.
 void TransformerHandlerImpl.unparsedEntityDecl(java.lang.String name, java.lang.String publicId, java.lang.String systemId, java.lang.String notationName)
          Filter an unparsed entity declaration event.
 void TransformerHandlerImpl.startDocument()
          Filter a start document event.
 void TransformerHandlerImpl.endDocument()
          Filter an end document event.
 void TransformerHandlerImpl.startPrefixMapping(java.lang.String prefix, java.lang.String uri)
          Filter a start Namespace prefix mapping event.
 void TransformerHandlerImpl.endPrefixMapping(java.lang.String prefix)
          Filter an end Namespace prefix mapping event.
 void TransformerHandlerImpl.startElement(java.lang.String uri, java.lang.String localName, java.lang.String qName, Attributes atts)
          Filter a start element event.
 void TransformerHandlerImpl.endElement(java.lang.String uri, java.lang.String localName, java.lang.String qName)
          Filter an end element event.
 void TransformerHandlerImpl.characters(char[] ch, int start, int length)
          Filter a character data event.
 void TransformerHandlerImpl.ignorableWhitespace(char[] ch, int start, int length)
          Filter an ignorable whitespace event.
 void TransformerHandlerImpl.processingInstruction(java.lang.String target, java.lang.String data)
          Filter a processing instruction event.
 void TransformerHandlerImpl.skippedEntity(java.lang.String name)
          Filter a skipped entity event.
 void TransformerHandlerImpl.warning(SAXParseException e)
          Filter a warning event.
 void TransformerHandlerImpl.error(SAXParseException e)
          Filter an error event.
 void TransformerHandlerImpl.fatalError(SAXParseException e)
          Filter a fatal error event.
 void TransformerHandlerImpl.startDTD(java.lang.String name, java.lang.String publicId, java.lang.String systemId)
          Report the start of DTD declarations, if any.
 void TransformerHandlerImpl.endDTD()
          Report the end of DTD declarations.
 void TransformerHandlerImpl.startEntity(java.lang.String name)
          Report the beginning of an entity in content.
 void TransformerHandlerImpl.endEntity(java.lang.String name)
          Report the end of an entity.
 void TransformerHandlerImpl.startCDATA()
          Report the start of a CDATA section.
 void TransformerHandlerImpl.endCDATA()
          Report the end of a CDATA section.
 void TransformerHandlerImpl.comment(char[] ch, int start, int length)
          Report an XML comment anywhere in the document.
 void TransformerHandlerImpl.elementDecl(java.lang.String name, java.lang.String model)
          Report an element type declaration.
 void TransformerHandlerImpl.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 TransformerHandlerImpl.internalEntityDecl(java.lang.String name, java.lang.String value)
          Report an internal entity declaration.
 void TransformerHandlerImpl.externalEntityDecl(java.lang.String name, java.lang.String publicId, java.lang.String systemId)
          Report a parsed external entity declaration.
 void TransformerIdentityImpl.notationDecl(java.lang.String name, java.lang.String publicId, java.lang.String systemId)
          Receive notification of a notation declaration.
 void TransformerIdentityImpl.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 TransformerIdentityImpl.startDocument()
          Receive notification of the beginning of the document.
 void TransformerIdentityImpl.endDocument()
          Receive notification of the end of the document.
 void TransformerIdentityImpl.startPrefixMapping(java.lang.String prefix, java.lang.String uri)
          Receive notification of the start of a Namespace mapping.
 void TransformerIdentityImpl.endPrefixMapping(java.lang.String prefix)
          Receive notification of the end of a Namespace mapping.
 void TransformerIdentityImpl.startElement(java.lang.String uri, java.lang.String localName, java.lang.String qName, Attributes attributes)
          Receive notification of the start of an element.
 void TransformerIdentityImpl.endElement(java.lang.String uri, java.lang.String localName, java.lang.String qName)
          Receive notification of the end of an element.
 void TransformerIdentityImpl.characters(char[] ch, int start, int length)
          Receive notification of character data inside an element.
 void TransformerIdentityImpl.ignorableWhitespace(char[] ch, int start, int length)
          Receive notification of ignorable whitespace in element content.
 void TransformerIdentityImpl.processingInstruction(java.lang.String target, java.lang.String data)
          Receive notification of a processing instruction.
 void TransformerIdentityImpl.skippedEntity(java.lang.String name)
          Receive notification of a skipped entity.
 void TransformerIdentityImpl.startDTD(java.lang.String name, java.lang.String publicId, java.lang.String systemId)
          Report the start of DTD declarations, if any.
 void TransformerIdentityImpl.endDTD()
          Report the end of DTD declarations.
 void TransformerIdentityImpl.startEntity(java.lang.String name)
          Report the beginning of an entity in content.
 void TransformerIdentityImpl.endEntity(java.lang.String name)
          Report the end of an entity.
 void TransformerIdentityImpl.startCDATA()
          Report the start of a CDATA section.
 void TransformerIdentityImpl.endCDATA()
          Report the end of a CDATA section.
 void TransformerIdentityImpl.comment(char[] ch, int start, int length)
          Report an XML comment anywhere in the document.
 void TransformerIdentityImpl.elementDecl(java.lang.String name, java.lang.String model)
          Report an element type declaration.
 void TransformerIdentityImpl.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 TransformerIdentityImpl.internalEntityDecl(java.lang.String name, java.lang.String value)
          Report an internal entity declaration.
 void TransformerIdentityImpl.externalEntityDecl(java.lang.String name, java.lang.String publicId, java.lang.String systemId)
          Report a parsed external entity declaration.
 void TrAXFilter.parse(InputSource input)
          Parse a document.
 void TrAXFilter.parse(java.lang.String systemId)
          Parse a document.
 

Uses of SAXException in org.apache.xalan.xsltc
 

Subclasses of SAXException in org.apache.xalan.xsltc
 interface TransletException
           
 

Uses of SAXException in org.apache.xalan.xsltc.compiler
 

Methods in org.apache.xalan.xsltc.compiler that throw SAXException
 void Parser.startElement(java.lang.String uri, java.lang.String localname, java.lang.String qname, Attributes attributes)
          SAX2: Receive notification of the beginning of an element.
 

Uses of SAXException in org.apache.xalan.xsltc.dom
 

Methods in org.apache.xalan.xsltc.dom that throw SAXException
 void SAXImpl.characters(char[] ch, int start, int length)
          SAX2: Receive notification of character data.
 void SAXImpl.startDocument()
          SAX2: Receive notification of the beginning of a document.
 void SAXImpl.endDocument()
          SAX2: Receive notification of the end of a document.
 void SAXImpl.startElement(java.lang.String uri, java.lang.String localName, java.lang.String qname, Attributes attributes, Node node)
          Specialized interface used by DOM2SAX.
 void SAXImpl.startElement(java.lang.String uri, java.lang.String localName, java.lang.String qname, Attributes attributes)
          SAX2: Receive notification of the beginning of an element.
 void SAXImpl.endElement(java.lang.String namespaceURI, java.lang.String localName, java.lang.String qname)
          SAX2: Receive notification of the end of an element.
 void SAXImpl.processingInstruction(java.lang.String target, java.lang.String data)
          SAX2: Receive notification of a processing instruction.
 void SAXImpl.ignorableWhitespace(char[] ch, int start, int length)
          SAX2: Receive notification of ignorable whitespace in element content.
 void SAXImpl.startPrefixMapping(java.lang.String prefix, java.lang.String uri)
          SAX2: Begin the scope of a prefix-URI Namespace mapping.
 void SAXImpl.comment(char[] ch, int start, int length)
          SAX2: Report an XML comment anywhere in the document.
 void SimpleResultTreeImpl.startDocument()
          We only need to override the endDocument, characters, and setEscaping interfaces.
 void SimpleResultTreeImpl.endDocument()
           
 void SimpleResultTreeImpl.characters(java.lang.String str)
           
 void SimpleResultTreeImpl.characters(char[] ch, int offset, int length)
           
 boolean SimpleResultTreeImpl.setEscaping(boolean escape)
           
 void SimpleResultTreeImpl.dispatchCharactersEvents(int nodeHandle, ContentHandler ch, boolean normalize)
           
 void SimpleResultTreeImpl.dispatchToEvents(int nodeHandle, ContentHandler ch)
           
 void AdaptiveResultTreeImpl.startDocument()
           
 void AdaptiveResultTreeImpl.endDocument()
           
 void AdaptiveResultTreeImpl.characters(java.lang.String str)
           
 void AdaptiveResultTreeImpl.characters(char[] ch, int offset, int length)
           
 boolean AdaptiveResultTreeImpl.setEscaping(boolean escape)
           
 void AdaptiveResultTreeImpl.startElement(java.lang.String elementName)
           
 void AdaptiveResultTreeImpl.startElement(java.lang.String uri, java.lang.String localName, java.lang.String qName)
           
 void AdaptiveResultTreeImpl.startElement(java.lang.String uri, java.lang.String localName, java.lang.String qName, Attributes attributes)
           
 void AdaptiveResultTreeImpl.endElement(java.lang.String elementName)
           
 void AdaptiveResultTreeImpl.endElement(java.lang.String uri, java.lang.String localName, java.lang.String qName)
           
 void AdaptiveResultTreeImpl.addUniqueAttribute(java.lang.String qName, java.lang.String value, int flags)
           
 void AdaptiveResultTreeImpl.namespaceAfterStartElement(java.lang.String prefix, java.lang.String uri)
           
 void AdaptiveResultTreeImpl.comment(java.lang.String comment)
           
 void AdaptiveResultTreeImpl.comment(char[] chars, int offset, int length)
           
 void AdaptiveResultTreeImpl.processingInstruction(java.lang.String target, java.lang.String data)
           
 void AdaptiveResultTreeImpl.dispatchCharactersEvents(int nodeHandle, ContentHandler ch, boolean normalize)
           
 void AdaptiveResultTreeImpl.dispatchToEvents(int nodeHandle, ContentHandler ch)
           
 

Constructors in org.apache.xalan.xsltc.dom that throw SAXException
DocumentCache.DocumentCache(int size)
          DocumentCache constructor
DocumentCache.DocumentCache(int size, XSLTCDTMManager dtmManager)
          DocumentCache constructor
 

Uses of SAXException in org.apache.xalan.xsltc.runtime
 

Methods in org.apache.xalan.xsltc.runtime that throw SAXException
 void StringValueHandler.characters(char[] ch, int off, int len)
           
 void StringValueHandler.characters(java.lang.String characters)
           
 void StringValueHandler.startElement(java.lang.String qname)
           
 void StringValueHandler.endElement(java.lang.String qname)
           
 

Uses of SAXException in org.apache.xalan.xsltc.trax
 

Methods in org.apache.xalan.xsltc.trax that throw SAXException
 void DOM2SAX.parse(InputSource unused)
           
 void DOM2SAX.parse()
           
 void DOM2SAX.parse(java.lang.String sysId)
          This class is only used internally so this method should never be called.
 void TrAXFilter.parse(InputSource input)
           
 void TrAXFilter.parse(java.lang.String systemId)
           
 void DOM2TO.parse(InputSource unused)
           
 void DOM2TO.parse()
           
 void DOM2TO.parse(java.lang.String sysId)
          This class is only used internally so this method should never be called.
 void TransformerHandlerImpl.characters(char[] ch, int start, int length)
          Implements org.xml.sax.ContentHandler.characters() Receive notification of character data.
 void TransformerHandlerImpl.startDocument()
          Implements org.xml.sax.ContentHandler.startDocument() Receive notification of the beginning of a document.
 void TransformerHandlerImpl.endDocument()
          Implements org.xml.sax.ContentHandler.endDocument() Receive notification of the end of a document.
 void TransformerHandlerImpl.startElement(java.lang.String uri, java.lang.String localName, java.lang.String qname, Attributes attributes)
          Implements org.xml.sax.ContentHandler.startElement() Receive notification of the beginning of an element.
 void TransformerHandlerImpl.endElement(java.lang.String namespaceURI, java.lang.String localName, java.lang.String qname)
          Implements org.xml.sax.ContentHandler.endElement() Receive notification of the end of an element.
 void TransformerHandlerImpl.processingInstruction(java.lang.String target, java.lang.String data)
          Implements org.xml.sax.ContentHandler.processingInstruction() Receive notification of a processing instruction.
 void TransformerHandlerImpl.startCDATA()
          Implements org.xml.sax.ext.LexicalHandler.startCDATA()
 void TransformerHandlerImpl.endCDATA()
          Implements org.xml.sax.ext.LexicalHandler.endCDATA()
 void TransformerHandlerImpl.comment(char[] ch, int start, int length)
          Implements org.xml.sax.ext.LexicalHandler.comment() Receieve notification of a comment
 void TransformerHandlerImpl.ignorableWhitespace(char[] ch, int start, int length)
          Implements org.xml.sax.ContentHandler.ignorableWhitespace() Receive notification of ignorable whitespace in element content.
 void TransformerHandlerImpl.skippedEntity(java.lang.String name)
          Implements org.xml.sax.ContentHandler.skippedEntity() Receive notification of a skipped entity.
 void TransformerHandlerImpl.startPrefixMapping(java.lang.String prefix, java.lang.String uri)
          Implements org.xml.sax.ContentHandler.startPrefixMapping() Begin the scope of a prefix-URI Namespace mapping.
 void TransformerHandlerImpl.endPrefixMapping(java.lang.String prefix)
          Implements org.xml.sax.ContentHandler.endPrefixMapping() End the scope of a prefix-URI Namespace mapping.
 void TransformerHandlerImpl.startDTD(java.lang.String name, java.lang.String publicId, java.lang.String systemId)
          Implements org.xml.sax.ext.LexicalHandler.startDTD()
 void TransformerHandlerImpl.endDTD()
          Implements org.xml.sax.ext.LexicalHandler.endDTD()
 void TransformerHandlerImpl.startEntity(java.lang.String name)
          Implements org.xml.sax.ext.LexicalHandler.startEntity()
 void TransformerHandlerImpl.endEntity(java.lang.String name)
          Implements org.xml.sax.ext.LexicalHandler.endEntity()
 void TransformerHandlerImpl.unparsedEntityDecl(java.lang.String name, java.lang.String publicId, java.lang.String systemId, java.lang.String notationName)
          Implements org.xml.sax.DTDHandler.unparsedEntityDecl()
 void TransformerHandlerImpl.notationDecl(java.lang.String name, java.lang.String publicId, java.lang.String systemId)
          Implements org.xml.sax.DTDHandler.notationDecl()
 void TransformerHandlerImpl.attributeDecl(java.lang.String eName, java.lang.String aName, java.lang.String type, java.lang.String valueDefault, java.lang.String value)
          Implements org.xml.sax.ext.DeclHandler.attributeDecl()
 void TransformerHandlerImpl.elementDecl(java.lang.String name, java.lang.String model)
          Implements org.xml.sax.ext.DeclHandler.elementDecl()
 void TransformerHandlerImpl.externalEntityDecl(java.lang.String name, java.lang.String publicId, java.lang.String systemId)
          Implements org.xml.sax.ext.DeclHandler.externalEntityDecl()
 void TransformerHandlerImpl.internalEntityDecl(java.lang.String name, java.lang.String value)
          Implements org.xml.sax.ext.DeclHandler.externalEntityDecl()
 void SAX2DOM.startDTD(java.lang.String name, java.lang.String publicId, java.lang.String systemId)
           
 void TemplatesHandlerImpl.endDocument()
          Just forward SAX2 event to parser object.
 void TemplatesHandlerImpl.startElement(java.lang.String uri, java.lang.String localname, java.lang.String qname, Attributes attributes)
          Just forward SAX2 event to parser object.
 

Uses of SAXException in org.apache.xml.dtm
 

Methods in org.apache.xml.dtm that throw SAXException
 void DTM.dispatchCharactersEvents(int nodeHandle, ContentHandler ch, boolean normalize)
          Directly call the characters method on the passed ContentHandler for the string-value of the given node (see http://www.w3.org/TR/xpath#data-model for the definition of a node's string-value).
 void DTM.dispatchToEvents(int nodeHandle, ContentHandler ch)
          Directly create SAX parser events representing the XML content of a DTM subtree.
 

Uses of SAXException in org.apache.xml.dtm.ref
 

Methods in org.apache.xml.dtm.ref that throw SAXException
abstract  void DTMDefaultBase.dispatchCharactersEvents(int nodeHandle, ContentHandler ch, boolean normalize)
          Directly call the characters method on the passed ContentHandler for the string-value of the given node (see http://www.w3.org/TR/xpath#data-model for the definition of a node's string-value).
abstract  void DTMDefaultBase.dispatchToEvents(int nodeHandle, ContentHandler ch)
          Directly create SAX parser events from a subtree.
 void DTMTreeWalker.traverse(int pos)
          Perform a non-recursive pre-order/post-order traversal, operating as a Visitor.
 void DTMTreeWalker.traverse(int pos, int top)
          Perform a non-recursive pre-order/post-order traversal, operating as a Visitor.
 void IncrementalSAXSource.startParse(InputSource source)
          Launch an XMLReader's parsing operation, feeding events to this IncrementalSAXSource.
 void IncrementalSAXSource_Filter.characters(char[] ch, int start, int length)
           
 void IncrementalSAXSource_Filter.endDocument()
           
 void IncrementalSAXSource_Filter.endElement(java.lang.String namespaceURI, java.lang.String localName, java.lang.String qName)