|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use SAXException | |
org.dom4j.io | Provides input and output via SAX and DOM together with writing dom4j objects to streams as XML text. |
org.dom4j.io.aelfred | The default SAX XMLReader implementation which is a port of the original Aelfred SAX Parser. |
org.dom4j.io.aelfred2 | This code has been taken from the GNU JAXP Project. |
org.dom4j.jaxb | |
org.xml.sax | This package provides the core SAX APIs. |
org.xml.sax.ext | This package contains interfaces to SAX2 facilities that conformant SAX drivers won't necessarily support. |
org.xml.sax.helpers | This package contains "helper" classes, including support for bootstrapping SAX-based applications. |
Uses of SAXException in org.dom4j.io |
Methods in org.dom4j.io that throw SAXException | |
void |
SAXWriter.write(Node node)
A polymorphic method to write any Node to this SAX stream |
void |
SAXWriter.write(Document document)
Generates SAX events for the given Document and all its content |
void |
SAXWriter.write(Element element)
Generates SAX events for the given Element and all its content |
void |
SAXWriter.writeOpen(Element element)
Writes the opening tag of an Element ,
including its Attribute s
but without its content. |
void |
SAXWriter.writeClose(Element element)
Writes the closing tag of an Element |
void |
SAXWriter.write(java.lang.String text)
Generates SAX events for the given text |
void |
SAXWriter.write(CDATA cdata)
Generates SAX events for the given CDATA |
void |
SAXWriter.write(Comment comment)
Generates SAX events for the given Comment |
void |
SAXWriter.write(Entity entity)
Generates SAX events for the given Entity |
void |
SAXWriter.write(ProcessingInstruction pi)
Generates SAX events for the given ProcessingInstruction |
void |
SAXWriter.parse(InputSource input)
Parses an XML document. |
protected void |
SAXWriter.writeContent(Branch branch,
NamespaceStack namespaceStack)
|
protected void |
SAXWriter.documentLocator(Document document)
The Locator is only really useful when parsing a textual
document as its main purpose is to identify the line and column number. |
protected void |
SAXWriter.entityResolver(Document document)
|
protected void |
SAXWriter.dtdHandler(Document document)
We do not yet support DTD or XML Schemas so this method does nothing right now. |
protected void |
SAXWriter.startDocument()
|
protected void |
SAXWriter.endDocument()
|
protected void |
SAXWriter.write(Element element,
NamespaceStack namespaceStack)
|
protected AttributesImpl |
SAXWriter.startPrefixMapping(Element element,
NamespaceStack namespaceStack)
Fires a SAX startPrefixMapping event for all the namespaceStack which have just come into scope |
protected void |
SAXWriter.endPrefixMapping(NamespaceStack namespaceStack,
int stackSize)
Fires a SAX endPrefixMapping event for all the namespaceStack which have gone out of scope |
protected void |
SAXWriter.startElement(Element element,
AttributesImpl namespaceAttributes)
|
protected void |
SAXWriter.endElement(Element element)
|
protected Attributes |
SAXWriter.createAttributes(Element element,
Attributes namespaceAttributes)
|
void |
SAXValidator.validate(Document document)
Validates the given Document by writing it to a
validating SAX Parser. |
XMLReader |
SAXValidator.getXMLReader()
|
void |
SAXValidator.setXMLReader(XMLReader xmlReader)
Sets the XMLReader used to parse SAX events |
protected XMLReader |
SAXValidator.createXMLReader()
Factory Method to allow alternate methods of creating and configuring XMLReader objects |
protected void |
SAXValidator.configureReader()
Configures the XMLReader before use |
void |
XMLWriter.parse(InputSource source)
|
void |
XMLWriter.startDocument()
|
void |
XMLWriter.endDocument()
|
void |
XMLWriter.startPrefixMapping(java.lang.String prefix,
java.lang.String uri)
|
void |
XMLWriter.endPrefixMapping(java.lang.String prefix)
|
void |
XMLWriter.startElement(java.lang.String namespaceURI,
java.lang.String localName,
java.lang.String qName,
Attributes attributes)
|
void |
XMLWriter.endElement(java.lang.String namespaceURI,
java.lang.String localName,
java.lang.String qName)
|
void |
XMLWriter.characters(char[] ch,
int start,
int length)
|
void |
XMLWriter.ignorableWhitespace(char[] ch,
int start,
int length)
|
void |
XMLWriter.processingInstruction(java.lang.String target,
java.lang.String data)
|
void |
XMLWriter.notationDecl(java.lang.String name,
java.lang.String publicID,
java.lang.String systemID)
|
void |
XMLWriter.unparsedEntityDecl(java.lang.String name,
java.lang.String publicID,
java.lang.String systemID,
java.lang.String notationName)
|
void |
XMLWriter.startDTD(java.lang.String name,
java.lang.String publicID,
java.lang.String systemID)
|
void |
XMLWriter.endDTD()
|
void |
XMLWriter.startCDATA()
|
void |
XMLWriter.endCDATA()
|
void |
XMLWriter.startEntity(java.lang.String name)
|
void |
XMLWriter.endEntity(java.lang.String name)
|
void |
XMLWriter.comment(char[] ch,
int start,
int length)
|
protected void |
XMLWriter.handleException(java.io.IOException e)
|
void |
HTMLWriter.startCDATA()
|
void |
HTMLWriter.endCDATA()
|
void |
SAXContentHandler.processingInstruction(java.lang.String target,
java.lang.String data)
|
void |
SAXContentHandler.startPrefixMapping(java.lang.String prefix,
java.lang.String uri)
|
void |
SAXContentHandler.endPrefixMapping(java.lang.String prefix)
|
void |
SAXContentHandler.startDocument()
|
void |
SAXContentHandler.endDocument()
|
void |
SAXContentHandler.startElement(java.lang.String namespaceURI,
java.lang.String localName,
java.lang.String qualifiedName,
Attributes attributes)
|
void |
SAXContentHandler.endElement(java.lang.String namespaceURI,
java.lang.String localName,
java.lang.String qName)
|
void |
SAXContentHandler.characters(char[] ch,
int start,
int end)
|
void |
SAXContentHandler.warning(SAXParseException exception)
This method is called when a warning occurs during the parsing of the document. |
void |
SAXContentHandler.error(SAXParseException exception)
This method is called when an error is detected during parsing such as a validation error. |
void |
SAXContentHandler.fatalError(SAXParseException exception)
This method is called when a fatal error occurs during parsing. |
void |
SAXContentHandler.startDTD(java.lang.String name,
java.lang.String publicId,
java.lang.String systemId)
|
void |
SAXContentHandler.endDTD()
|
void |
SAXContentHandler.startEntity(java.lang.String name)
|
void |
SAXContentHandler.endEntity(java.lang.String name)
|
void |
SAXContentHandler.startCDATA()
|
void |
SAXContentHandler.endCDATA()
|
void |
SAXContentHandler.comment(char[] ch,
int start,
int end)
|
void |
SAXContentHandler.elementDecl(java.lang.String name,
java.lang.String model)
Report an element type declaration. |
void |
SAXContentHandler.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 |
SAXContentHandler.internalEntityDecl(java.lang.String name,
java.lang.String value)
Report an internal entity declaration. |
void |
SAXContentHandler.externalEntityDecl(java.lang.String name,
java.lang.String publicId,
java.lang.String systemId)
Report a parsed external entity declaration. |
void |
SAXContentHandler.notationDecl(java.lang.String name,
java.lang.String publicId,
java.lang.String systemId)
Receive notification of a notation declaration event. |
void |
SAXContentHandler.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 |
SAXReader.setProperty(java.lang.String name,
java.lang.Object value)
Allows a SAX property to be set on the underlying SAX parser. |
void |
SAXReader.setFeature(java.lang.String name,
boolean value)
Sets a SAX feature on the underlying SAX parser. |
XMLReader |
SAXReader.getXMLReader()
|
void |
SAXReader.setXMLReaderClassName(java.lang.String xmlReaderClassName)
Sets the class name of the XMLReader to be used
to parse SAX events. |
protected XMLReader |
SAXReader.createXMLReader()
Factory Method to allow alternate methods of creating and configuring XMLReader objects |
Constructors in org.dom4j.io that throw SAXException | |
SAXReader(java.lang.String xmlReaderClassName)
|
|
SAXReader(java.lang.String xmlReaderClassName,
boolean validating)
|
Uses of SAXException in org.dom4j.io.aelfred |
Methods in org.dom4j.io.aelfred that throw SAXException | |
void |
SAXDriver.setLocale(java.util.Locale locale)
Deprecated. SAX1: Sets the locale used for diagnostics; currently, only locales using the English language are supported. |
void |
SAXDriver.parse(InputSource source)
Deprecated. SAX1, SAX2: Auxiliary API to parse an XML document, used mostly when no URI is available. |
void |
SAXDriver.parse(java.lang.String systemId)
Deprecated. SAX1, SAX2: Preferred API to parse an XML document, using a system identifier (URI). |
void |
DefaultHandler.startCDATA()
Deprecated. SAX2: called before parsing CDATA characters |
void |
DefaultHandler.endCDATA()
Deprecated. SAX2: called after parsing CDATA characters |
void |
DefaultHandler.startDTD(java.lang.String root,
java.lang.String pubid,
java.lang.String sysid)
Deprecated. SAX2: called when the doctype is partially parsed |
void |
DefaultHandler.endDTD()
Deprecated. SAX2: called after the doctype is parsed |
void |
DefaultHandler.startEntity(java.lang.String name)
Deprecated. SAX2: called before parsing a general entity in content |
void |
DefaultHandler.endEntity(java.lang.String name)
Deprecated. SAX2: called after parsing a general entity in content |
void |
DefaultHandler.comment(char[] buf,
int off,
int len)
Deprecated. SAX2: called when comments are parsed |
void |
DefaultHandler.attributeDecl(java.lang.String element,
java.lang.String name,
java.lang.String type,
java.lang.String defaultType,
java.lang.String defaltValue)
Deprecated. SAX2: called on attribute declarations |
void |
DefaultHandler.elementDecl(java.lang.String name,
java.lang.String model)
Deprecated. SAX2: called on element declarations |
void |
DefaultHandler.externalEntityDecl(java.lang.String name,
java.lang.String pubid,
java.lang.String sysid)
Deprecated. SAX2: called on external entity declarations |
void |
DefaultHandler.internalEntityDecl(java.lang.String name,
java.lang.String value)
Deprecated. SAX2: called on internal entity declarations |
Uses of SAXException in org.dom4j.io.aelfred2 |
Methods in org.dom4j.io.aelfred2 that throw SAXException | |
void |
SAXDriver.setLocale(java.util.Locale locale)
SAX1: Sets the locale used for diagnostics; currently, only locales using the English language are supported. |
void |
SAXDriver.parse(InputSource source)
SAX1, SAX2: Auxiliary API to parse an XML document, used mostly when no URI is available. |
void |
SAXDriver.parse(java.lang.String systemId)
SAX1, SAX2: Preferred API to parse an XML document, using a system identifier (URI). |
Uses of SAXException in org.dom4j.jaxb |
Methods in org.dom4j.jaxb that throw SAXException | |
void |
JAXBWriter.startDocument()
Start a document by writing the initial XML declaration to the output. |
void |
JAXBWriter.endDocument()
Stop writing the document to the output. |
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 |
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). |
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 |
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 |
EntityResolver.resolveEntity(java.lang.String publicId,
java.lang.String systemId)
Allow the application to resolve external entities. |
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 |
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 uri,
java.lang.String localName,
java.lang.String qName,
Attributes atts)
Receive notification of the beginning of an element. |
void |
ContentHandler.endElement(java.lang.String uri,
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. |
Uses of SAXException in org.xml.sax.ext |
Methods in org.xml.sax.ext that throw SAXException | |
InputSource |
EntityResolver2.getExternalSubset(java.lang.String name,
java.lang.String baseURI)
Allows applications to provide an external subset for documents that don't explicitly define one. |
InputSource |
EntityResolver2.resolveEntity(java.lang.String name,
java.lang.String publicId,
java.lang.String baseURI,
java.lang.String systemId)
Allows applications to map references to external entities into input sources, or tell the parser it should use conventional URI resolution. |
void |
DefaultHandler2.startCDATA()
|
void |
DefaultHandler2.endCDATA()
|
void |
DefaultHandler2.startDTD(java.lang.String name,
java.lang.String publicId,
java.lang.String systemId)
|
void |
DefaultHandler2.endDTD()
|
void |
DefaultHandler2.startEntity(java.lang.String name)
|
void |
DefaultHandler2.endEntity(java.lang.String name)
|
void |
DefaultHandler2.comment(char[] ch,
int start,
int length)
|
void |
DefaultHandler2.attributeDecl(java.lang.String eName,
java.lang.String aName,
java.lang.String type,
java.lang.String mode,
java.lang.String value)
|
void |
DefaultHandler2.elementDecl(java.lang.String name,
java.lang.String model)
|
void |
DefaultHandler2.externalEntityDecl(java.lang.String name,
java.lang.String publicId,
java.lang.String systemId)
|
void |
DefaultHandler2.internalEntityDecl(java.lang.String name,
java.lang.String value)
|
InputSource |
DefaultHandler2.getExternalSubset(java.lang.String name,
java.lang.String baseURI)
Tells the parser that if no external subset has been declared in the document text, none should be used. |
InputSource |
DefaultHandler2.resolveEntity(java.lang.String name,
java.lang.String publicId,
java.lang.String baseURI,
java.lang.String systemId)
Tells the parser to resolve the systemId against the baseURI and read the entity text from that resulting absolute URI. |
InputSource |
DefaultHandler2.resolveEntity(java.lang.String publicId,
java.lang.String systemId)
Invokes EntityResolver2.resolveEntity()
with null entity name and base URI. |
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 mode,
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 | |
static XMLReader |
XMLReaderFactory.createXMLReader()
Attempt to create an XMLReader from system defaults. |
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. |
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. |
void |
ParserAdapter.parse(java.lang.String systemId)
Parse an XML document. |
void |
ParserAdapter.parse(InputSource input)
Parse an XML document. |
void |
ParserAdapter.startDocument()
Adapter implementation method; do not call. |
void |
ParserAdapter.endDocument()
Adapter implementation method; do not call. |
void |
ParserAdapter.startElement(java.lang.String qName,
AttributeList qAtts)
Adapter implementation method; do not call. |
void |
ParserAdapter.endElement(java.lang.String qName)
Adapter implementation method; do not call. |
void |
ParserAdapter.characters(char[] ch,
int start,
int length)
Adapter implementation method; do not call. |
void |
ParserAdapter.ignorableWhitespace(char[] ch,
int start,
int length)
Adapter implementation method; do not call. |
void |
ParserAdapter.processingInstruction(java.lang.String target,
java.lang.String data)
Adapter implementation method; do not call. |
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 | |
XMLReaderAdapter()
Create a new adapter. |
|
ParserAdapter()
Construct a new parser adapter. |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |