| java.lang.Object org.apache.xerces.parsers.XMLParser org.apache.xerces.parsers.AbstractXMLDocumentParser org.apache.xerces.parsers.AbstractSAXParser
All known Subclasses: org.apache.xerces.parsers.SAXParser,
AbstractSAXParser | abstract public class AbstractSAXParser extends AbstractXMLDocumentParser implements PSVIProvider,Parser,XMLReader(Code) | | This is the base class of all SAX parsers. It implements both the
SAX1 and SAX2 parser functionality, while the actual pipeline is
defined in the parser configuration.
author: Arnaud Le Hors, IBM author: Andy Clark, IBM version: $Id: AbstractSAXParser.java 548086 2007-06-17 18:17:43Z mrglavas $ |
Inner Class :final protected static class LocatorProxy implements Locator2 | |
Method Summary | |
public void | attributeDecl(String elementName, String attributeName, String type, String[] enumeration, String defaultType, XMLString defaultValue, XMLString nonNormalizedDefaultValue, Augmentations augs) An attribute declaration.
Parameters: elementName - The name of the element that this attributeis associated with. Parameters: attributeName - The name of the attribute. Parameters: type - The attribute type. | public void | characters(XMLString text, Augmentations augs) Character content. | public void | comment(XMLString text, Augmentations augs) A comment. | public void | doctypeDecl(String rootElement, String publicId, String systemId, Augmentations augs) Notifies of the presence of the DOCTYPE line in the document. | public void | elementDecl(String name, String contentModel, Augmentations augs) An element declaration. | public void | endCDATA(Augmentations augs) The end of a CDATA section. | public void | endDTD(Augmentations augs) The end of the DTD. | public void | endDocument(Augmentations augs) The end of the document. | public void | endElement(QName element, Augmentations augs) The end of an element. | public void | endExternalSubset(Augmentations augs) The end of the DTD external subset. | public void | endGeneralEntity(String name, Augmentations augs) This method notifies the end of an entity. | final protected void | endNamespaceMapping() | public void | endParameterEntity(String name, Augmentations augs) This method notifies the end of an entity. | public void | externalEntityDecl(String name, XMLResourceIdentifier identifier, Augmentations augs) An external entity declaration.
Parameters: name - The name of the entity. | public AttributePSVI | getAttributePSVI(int index) | public AttributePSVI | getAttributePSVIByName(String uri, String localname) | public ContentHandler | getContentHandler() Return the current content handler. | public DTDHandler | getDTDHandler() Return the current DTD handler. | protected DeclHandler | getDeclHandler() Returns the DTD declaration event handler. | public ElementPSVI | getElementPSVI() | public EntityResolver | getEntityResolver() Return the current entity resolver. | public ErrorHandler | getErrorHandler() Return the current error handler. | public boolean | getFeature(String featureId) Query the state of a feature.
Query the current state of any feature in a SAX2 parser. | protected LexicalHandler | getLexicalHandler() Returns the lexical handler. | public Object | getProperty(String propertyId) Query the value of a property.
Return the current value of a property in a SAX2 parser.
The parser might not recognize the property.
Parameters: propertyId - The unique identifier (URI) of the propertybeing set. | public void | ignorableWhitespace(XMLString text, Augmentations augs) Ignorable whitespace. | public void | internalEntityDecl(String name, XMLString text, XMLString nonNormalizedText, Augmentations augs) An internal entity declaration.
Parameters: name - The name of the entity. | public void | notationDecl(String name, XMLResourceIdentifier identifier, Augmentations augs) | public void | parse(String systemId) Parses the input source specified by the given system identifier. | public void | parse(InputSource inputSource) | public void | processingInstruction(String target, XMLString data, Augmentations augs) A processing instruction. | public void | reset() Reset all components before parsing. | public void | setContentHandler(ContentHandler contentHandler) Allow an application to register a content event handler. | public void | setDTDHandler(DTDHandler dtdHandler) Allow an application to register a DTD event handler. | protected void | setDeclHandler(DeclHandler handler) Set the DTD declaration event handler. | public void | setDocumentHandler(DocumentHandler documentHandler) Allow an application to register a document event handler. | public void | setEntityResolver(EntityResolver resolver) Sets the resolver used to resolve external entities. | public void | setErrorHandler(ErrorHandler errorHandler) Allow an application to register an error event handler.
If the application does not register an error handler, all
error events reported by the SAX parser will be silently
ignored; however, normal processing may not continue. | public void | setFeature(String featureId, boolean state) Set the state of any feature in a SAX2 parser. | protected void | setLexicalHandler(LexicalHandler handler) Set the lexical event handler. | public void | setLocale(Locale locale) Set the locale to use for messages. | public void | setProperty(String propertyId, Object value) Set the value of any property in a SAX2 parser. | public void | startCDATA(Augmentations augs) The start of a CDATA section. | public void | startDocument(XMLLocator locator, String encoding, NamespaceContext namespaceContext, Augmentations augs) The start of the document.
Parameters: locator - The document locator, or null if the documentlocation cannot be reported during the parsingof this document. | public void | startElement(QName element, XMLAttributes attributes, Augmentations augs) The start of an element. | public void | startExternalSubset(XMLResourceIdentifier identifier, Augmentations augs) The start of the DTD external subset. | public void | startGeneralEntity(String name, XMLResourceIdentifier identifier, String encoding, Augmentations augs) This method notifies of the start of an entity. | final protected void | startNamespaceMapping() | public void | startParameterEntity(String name, XMLResourceIdentifier identifier, String encoding, Augmentations augs) This method notifies of the start of parameter entity. | public void | unparsedEntityDecl(String name, XMLResourceIdentifier identifier, String notation, Augmentations augs) An unparsed entity declaration. | public void | xmlDecl(String version, String encoding, String standalone, Augmentations augs) Notifies of the presence of an XMLDecl line in the document. |
ALLOW_UE_AND_NOTATION_EVENTS | final protected static String ALLOW_UE_AND_NOTATION_EVENTS(Code) | | Feature identifier: allow notation and unparsed entity events to be sent out of order.
|
DECLARATION_HANDLER | final protected static String DECLARATION_HANDLER(Code) | | Property id: declaration handler.
|
DOM_NODE | final protected static String DOM_NODE(Code) | | Property id: DOM node.
|
LEXICAL_HANDLER | final protected static String LEXICAL_HANDLER(Code) | | Property id: lexical handler.
|
NAMESPACES | final protected static String NAMESPACES(Code) | | Feature identifier: namespaces.
|
STRING_INTERNING | final protected static String STRING_INTERNING(Code) | | Feature id: string interning.
|
fLexicalHandlerParameterEntities | protected boolean fLexicalHandlerParameterEntities(Code) | | Lexical handler parameter entities.
|
fNamespacePrefixes | protected boolean fNamespacePrefixes(Code) | | Namespace prefixes.
|
fNamespaces | protected boolean fNamespaces(Code) | | Namespaces.
|
fParseInProgress | protected boolean fParseInProgress(Code) | | True if a parse is in progress. This state is needed because
some features/properties cannot be set while parsing (e.g.
validation and namespaces).
|
fResolveDTDURIs | protected boolean fResolveDTDURIs(Code) | | Resolve DTD URIs.
|
fStandalone | protected boolean fStandalone(Code) | | Standalone document declaration.
|
fUseEntityResolver2 | protected boolean fUseEntityResolver2(Code) | | Use EntityResolver2.
|
fXMLNSURIs | protected boolean fXMLNSURIs(Code) | | XMLNS URIs: Namespace declarations in the
http://www.w3.org/2000/xmlns/ namespace.
|
attributeDecl | public void attributeDecl(String elementName, String attributeName, String type, String[] enumeration, String defaultType, XMLString defaultValue, XMLString nonNormalizedDefaultValue, Augmentations augs) throws XNIException(Code) | | An attribute declaration.
Parameters: elementName - The name of the element that this attributeis associated with. Parameters: attributeName - The name of the attribute. Parameters: type - The attribute type. This value will be one ofthe following: "CDATA", "ENTITY", "ENTITIES","ENUMERATION", "ID", "IDREF", "IDREFS","NMTOKEN", "NMTOKENS", or "NOTATION". Parameters: enumeration - If the type has the value "ENUMERATION" or"NOTATION", this array holds the allowed attributevalues; otherwise, this array is null. Parameters: defaultType - The attribute default type. This value will beone of the following: "#FIXED", "#IMPLIED","#REQUIRED", or null. Parameters: defaultValue - The attribute default value, or null if nodefault value is specified. Parameters: nonNormalizedDefaultValue - The attribute default value with no normalization performed, or null if no default value is specified. Parameters: augs - Additional information that may include infosetaugmentations. throws: XNIException - Thrown by handler to signal an error. |
characters | public void characters(XMLString text, Augmentations augs) throws XNIException(Code) | | Character content.
Parameters: text - The content. Parameters: augs - Additional information that may include infoset augmentations throws: XNIException - Thrown by handler to signal an error. |
comment | public void comment(XMLString text, Augmentations augs) throws XNIException(Code) | | A comment.
Parameters: text - The text in the comment. Parameters: augs - Additional information that may include infoset augmentations throws: XNIException - Thrown by application to signal an error. |
doctypeDecl | public void doctypeDecl(String rootElement, String publicId, String systemId, Augmentations augs) throws XNIException(Code) | | Notifies of the presence of the DOCTYPE line in the document.
Parameters: rootElement - The name of the root element. Parameters: publicId - The public identifier if an external DTD or nullif the external DTD is specified using SYSTEM. Parameters: systemId - The system identifier if an external DTD, nullotherwise. Parameters: augs - Additional information that may include infoset augmentations throws: XNIException - Thrown by handler to signal an error. |
elementDecl | public void elementDecl(String name, String contentModel, Augmentations augs) throws XNIException(Code) | | An element declaration.
Parameters: name - The name of the element. Parameters: contentModel - The element content model. Parameters: augs - Additional information that may include infosetaugmentations. throws: XNIException - Thrown by handler to signal an error. |
endCDATA | public void endCDATA(Augmentations augs) throws XNIException(Code) | | The end of a CDATA section.
Parameters: augs - Additional information that may include infoset augmentations throws: XNIException - Thrown by handler to signal an error. |
endDTD | public void endDTD(Augmentations augs) throws XNIException(Code) | | The end of the DTD.
Parameters: augs - Additional information that may include infosetaugmentations. throws: XNIException - Thrown by handler to signal an error. |
endDocument | public void endDocument(Augmentations augs) throws XNIException(Code) | | The end of the document.
Parameters: augs - Additional information that may include infoset augmentations throws: XNIException - Thrown by handler to signal an error. |
endElement | public void endElement(QName element, Augmentations augs) throws XNIException(Code) | | The end of an element.
Parameters: element - The name of the element. Parameters: augs - Additional information that may include infoset augmentations throws: XNIException - Thrown by handler to signal an error. |
endExternalSubset | public void endExternalSubset(Augmentations augs) throws XNIException(Code) | | The end of the DTD external subset.
Parameters: augs - Additional information that may include infosetaugmentations. throws: XNIException - Thrown by handler to signal an error. |
endGeneralEntity | public void endGeneralEntity(String name, Augmentations augs) throws XNIException(Code) | | This method notifies the end of an entity. The DTD has the pseudo-name
of "[dtd]" parameter entity names start with '%'; and general entity
names are just the entity name.
Note: Since the document is an entity, the handler
will be notified of the end of the document entity by calling the
endEntity method with the entity name "[xml]" after calling
the endDocument method. When exposing entity boundaries through the
SAX API, the document entity is never reported, however.
Note: This method is not called for entity references
appearing as part of attribute values.
Parameters: name - The name of the entity. Parameters: augs - Additional information that may include infoset augmentations throws: XNIException - Thrown by handler to signal an error. |
endNamespaceMapping | final protected void endNamespaceMapping() throws SAXException(Code) | | Send endPrefixMapping events
|
endParameterEntity | public void endParameterEntity(String name, Augmentations augs) throws XNIException(Code) | | This method notifies the end of an entity. The DTD has the pseudo-name
of "[dtd]" parameter entity names start with '%'; and general entity
names are just the entity name.
Note: Since the document is an entity, the handler
will be notified of the end of the document entity by calling the
endEntity method with the entity name "[xml]" after calling
the endDocument method. When exposing entity boundaries through the
SAX API, the document entity is never reported, however.
Note: This method is not called for entity references
appearing as part of attribute values.
Parameters: name - The name of the parameter entity. Parameters: augs - Additional information that may include infosetaugmentations. throws: XNIException - Thrown by handler to signal an error. |
externalEntityDecl | public void externalEntityDecl(String name, XMLResourceIdentifier identifier, Augmentations augs) throws XNIException(Code) | | An external entity declaration.
Parameters: name - The name of the entity. Parameter entity names startwith '%', whereas the name of a general entity is justthe entity name. Parameters: identifier - An object containing all location information pertinent to this entity. Parameters: augs - Additional information that may include infosetaugmentations. throws: XNIException - Thrown by handler to signal an error. |
ignorableWhitespace | public void ignorableWhitespace(XMLString text, Augmentations augs) throws XNIException(Code) | | Ignorable whitespace. For this method to be called, the document
source must have some way of determining that the text containing
only whitespace characters should be considered ignorable. For
example, the validator can determine if a length of whitespace
characters in the document are ignorable based on the element
content model.
Parameters: text - The ignorable whitespace. Parameters: augs - Additional information that may include infoset augmentations throws: XNIException - Thrown by handler to signal an error. |
internalEntityDecl | public void internalEntityDecl(String name, XMLString text, XMLString nonNormalizedText, Augmentations augs) throws XNIException(Code) | | An internal entity declaration.
Parameters: name - The name of the entity. Parameter entity names start with'%', whereas the name of a general entity is just theentity name. Parameters: text - The value of the entity. Parameters: nonNormalizedText - The non-normalized value of the entity. Thisvalue contains the same sequence of characters that was inthe internal entity declaration, without any entityreferences expanded. Parameters: augs - Additional information that may include infosetaugmentations. throws: XNIException - Thrown by handler to signal an error. |
notationDecl | public void notationDecl(String name, XMLResourceIdentifier identifier, Augmentations augs) throws XNIException(Code) | | A notation declaration
Parameters: name - The name of the notation. Parameters: identifier - An object containing all location information pertinent to this notation. Parameters: augs - Additional information that may include infosetaugmentations. throws: XNIException - Thrown by handler to signal an error. |
parse | public void parse(String systemId) throws SAXException, IOException(Code) | | Parses the input source specified by the given system identifier.
This method is equivalent to the following:
parse(new InputSource(systemId));
Parameters: systemId - The system identifier (URI). exception: org.xml.sax.SAXException - Throws exception on SAX error. exception: java.io.IOException - Throws exception on i/o error. |
processingInstruction | public void processingInstruction(String target, XMLString data, Augmentations augs) throws XNIException(Code) | | A processing instruction. Processing instructions consist of a
target name and, optionally, text data. The data is only meaningful
to the application.
Typically, a processing instruction's data will contain a series
of pseudo-attributes. These pseudo-attributes follow the form of
element attributes but are not parsed or presented
to the application as anything other than text. The application is
responsible for parsing the data.
Parameters: target - The target. Parameters: data - The data or null if none specified. Parameters: augs - Additional information that may include infoset augmentations throws: XNIException - Thrown by handler to signal an error. |
reset | public void reset() throws XNIException(Code) | | Reset all components before parsing.
throws: XNIException - Thrown if an error occurs during initialization. |
setContentHandler | public void setContentHandler(ContentHandler contentHandler)(Code) | | Allow an application to register a content event handler.
If the application does not register a content handler, all
content events reported by the SAX parser will be silently
ignored.
Applications may register a new or different handler in the
middle of a parse, and the SAX parser must begin using the new
handler immediately.
Parameters: contentHandler - The content handler. See Also: AbstractSAXParser.getContentHandler |
setDTDHandler | public void setDTDHandler(DTDHandler dtdHandler)(Code) | | Allow an application to register a DTD event handler.
If the application does not register a DTD handler, all DTD
events reported by the SAX parser will be silently ignored.
Applications may register a new or different handler in the
middle of a parse, and the SAX parser must begin using the new
handler immediately.
Parameters: dtdHandler - The DTD handler. See Also: AbstractSAXParser.getDTDHandler |
setDocumentHandler | public void setDocumentHandler(DocumentHandler documentHandler)(Code) | | Allow an application to register a document event handler.
If the application does not register a document handler, all
document events reported by the SAX parser will be silently
ignored (this is the default behaviour implemented by
HandlerBase).
Applications may register a new or different handler in the
middle of a parse, and the SAX parser must begin using the new
handler immediately.
Parameters: documentHandler - The document handler. |
setEntityResolver | public void setEntityResolver(EntityResolver resolver)(Code) | | Sets the resolver used to resolve external entities. The EntityResolver
interface supports resolution of public and system identifiers.
Parameters: resolver - The new entity resolver. Passing a null value willuninstall the currently installed resolver. |
setErrorHandler | public void setErrorHandler(ErrorHandler errorHandler)(Code) | | Allow an application to register an error event handler.
If the application does not register an error handler, all
error events reported by the SAX parser will be silently
ignored; however, normal processing may not continue. It is
highly recommended that all SAX applications implement an
error handler to avoid unexpected bugs.
Applications may register a new or different handler in the
middle of a parse, and the SAX parser must begin using the new
handler immediately.
Parameters: errorHandler - The error handler. See Also: AbstractSAXParser.getErrorHandler |
setFeature | public void setFeature(String featureId, boolean state) throws SAXNotRecognizedException, SAXNotSupportedException(Code) | | Set the state of any feature in a SAX2 parser. The parser
might not recognize the feature, and if it does recognize
it, it might not be able to fulfill the request.
Parameters: featureId - The unique identifier (URI) of the feature. Parameters: state - The requested state of the feature (true or false). exception: SAXNotRecognizedException - If therequested feature is not known. exception: SAXNotSupportedException - If therequested feature is known, but the requestedstate is not supported. |
setLocale | public void setLocale(Locale locale) throws SAXException(Code) | | Set the locale to use for messages.
Parameters: locale - The locale object to use for localization of messages. exception: SAXException - An exception thrown if the parser does notsupport the specified locale. See Also: org.xml.sax.Parser |
setProperty | public void setProperty(String propertyId, Object value) throws SAXNotRecognizedException, SAXNotSupportedException(Code) | | Set the value of any property in a SAX2 parser. The parser
might not recognize the property, and if it does recognize
it, it might not support the requested value.
Parameters: propertyId - The unique identifier (URI) of the propertybeing set. Parameters: value - The value to which the property is being set. exception: SAXNotRecognizedException - If therequested property is not known. exception: SAXNotSupportedException - If therequested property is known, but the requestedvalue is not supported. |
startCDATA | public void startCDATA(Augmentations augs) throws XNIException(Code) | | The start of a CDATA section.
Parameters: augs - Additional information that may include infoset augmentations throws: XNIException - Thrown by handler to signal an error. |
startDocument | public void startDocument(XMLLocator locator, String encoding, NamespaceContext namespaceContext, Augmentations augs) throws XNIException(Code) | | The start of the document.
Parameters: locator - The document locator, or null if the documentlocation cannot be reported during the parsingof this document. However, it is stronglyrecommended that a locator be supplied that canat least report the system identifier of thedocument. Parameters: encoding - The auto-detected IANA encoding name of the entitystream. This value will be null in those situationswhere the entity encoding is not auto-detected (e.g.internal entities or a document entity that isparsed from a java.io.Reader). Parameters: namespaceContext - The namespace context in effect at thestart of this document.This object represents the current context.Implementors of this class are responsiblefor copying the namespace bindings from thethe current context (and its parent contexts)if that information is important. Parameters: augs - Additional information that may include infoset augmentations throws: XNIException - Thrown by handler to signal an error. |
startElement | public void startElement(QName element, XMLAttributes attributes, Augmentations augs) throws XNIException(Code) | | The start of an element. If the document specifies the start element
by using an empty tag, then the startElement method will immediately
be followed by the endElement method, with no intervening methods.
Parameters: element - The name of the element. Parameters: attributes - The element attributes. Parameters: augs - Additional information that may include infoset augmentations throws: XNIException - Thrown by handler to signal an error. |
startGeneralEntity | public void startGeneralEntity(String name, XMLResourceIdentifier identifier, String encoding, Augmentations augs) throws XNIException(Code) | | This method notifies of the start of an entity. The DTD has the
pseudo-name of "[dtd]" parameter entity names start with '%'; and
general entity names are just the entity name.
Note: Since the document is an entity, the handler
will be notified of the start of the document entity by calling the
startEntity method with the entity name "[xml]" before calling
the startDocument method. When exposing entity boundaries through the
SAX API, the document entity is never reported, however.
Note: This method is not called for entity references
appearing as part of attribute values.
Parameters: name - The name of the entity. Parameters: identifier - The resource identifier. Parameters: encoding - The auto-detected IANA encoding name of the entitystream. This value will be null in those situationswhere the entity encoding is not auto-detected (e.g.internal parameter entities). Parameters: augs - Additional information that may include infoset augmentations throws: XNIException - Thrown by handler to signal an error. |
startNamespaceMapping | final protected void startNamespaceMapping() throws SAXException(Code) | | Send startPrefixMapping events
|
startParameterEntity | public void startParameterEntity(String name, XMLResourceIdentifier identifier, String encoding, Augmentations augs) throws XNIException(Code) | | This method notifies of the start of parameter entity. The DTD has the
pseudo-name of "[dtd]" parameter entity names start with '%'; and
general entity names are just the entity name.
Note: Since the document is an entity, the handler
will be notified of the start of the document entity by calling the
startEntity method with the entity name "[xml]" before calling
the startDocument method. When exposing entity boundaries through the
SAX API, the document entity is never reported, however.
Note: This method is not called for entity references
appearing as part of attribute values.
Parameters: name - The name of the parameter entity. Parameters: identifier - The resource identifier. Parameters: encoding - The auto-detected IANA encoding name of the entitystream. This value will be null in those situationswhere the entity encoding is not auto-detected (e.g.internal parameter entities). Parameters: augs - Additional information that may include infosetaugmentations. throws: XNIException - Thrown by handler to signal an error. |
unparsedEntityDecl | public void unparsedEntityDecl(String name, XMLResourceIdentifier identifier, String notation, Augmentations augs) throws XNIException(Code) | | An unparsed entity declaration.
Parameters: name - The name of the entity. Parameters: identifier - An object containing all location information pertinent to this entity. Parameters: notation - The name of the notation. Parameters: augs - Additional information that may include infosetaugmentations. throws: XNIException - Thrown by handler to signal an error. |
xmlDecl | public void xmlDecl(String version, String encoding, String standalone, Augmentations augs) throws XNIException(Code) | | Notifies of the presence of an XMLDecl line in the document. If
present, this method will be called immediately following the
startDocument call.
Parameters: version - The XML version. Parameters: encoding - The IANA encoding name of the document, or null ifnot specified. Parameters: standalone - The standalone value, or null if not specified. Parameters: augs - Additional information that may include infoset augmentations throws: XNIException - Thrown by handler to signal an error. |
Methods inherited from org.apache.xerces.parsers.AbstractXMLDocumentParser | public void any(Augmentations augs) throws XNIException(Code)(Java Doc) public void attributeDecl(String elementName, String attributeName, String type, String[] enumeration, String defaultType, XMLString defaultValue, XMLString nonNormalizedDefaultValue, Augmentations augs) throws XNIException(Code)(Java Doc) public void characters(XMLString text, Augmentations augs) throws XNIException(Code)(Java Doc) public void comment(XMLString text, Augmentations augs) throws XNIException(Code)(Java Doc) public void doctypeDecl(String rootElement, String publicId, String systemId, Augmentations augs) throws XNIException(Code)(Java Doc) public void element(String elementName, Augmentations augs) throws XNIException(Code)(Java Doc) public void elementDecl(String name, String contentModel, Augmentations augs) throws XNIException(Code)(Java Doc) public void empty(Augmentations augs) throws XNIException(Code)(Java Doc) public void emptyElement(QName element, XMLAttributes attributes, Augmentations augs) throws XNIException(Code)(Java Doc) public void endAttlist(Augmentations augs) throws XNIException(Code)(Java Doc) public void endCDATA(Augmentations augs) throws XNIException(Code)(Java Doc) public void endConditional(Augmentations augs) throws XNIException(Code)(Java Doc) public void endContentModel(Augmentations augs) throws XNIException(Code)(Java Doc) public void endDTD(Augmentations augs) throws XNIException(Code)(Java Doc) public void endDocument(Augmentations augs) throws XNIException(Code)(Java Doc) public void endElement(QName element, Augmentations augs) throws XNIException(Code)(Java Doc) public void endExternalSubset(Augmentations augmentations) throws XNIException(Code)(Java Doc) public void endGeneralEntity(String name, Augmentations augs) throws XNIException(Code)(Java Doc) public void endGroup(Augmentations augs) throws XNIException(Code)(Java Doc) public void endParameterEntity(String name, Augmentations augs) throws XNIException(Code)(Java Doc) public void externalEntityDecl(String name, XMLResourceIdentifier identifier, Augmentations augs) throws XNIException(Code)(Java Doc) public XMLDTDContentModelSource getDTDContentModelSource()(Code)(Java Doc) public XMLDTDSource getDTDSource()(Code)(Java Doc) public XMLDocumentSource getDocumentSource()(Code)(Java Doc) public void ignorableWhitespace(XMLString text, Augmentations augs) throws XNIException(Code)(Java Doc) public void ignoredCharacters(XMLString text, Augmentations augs) throws XNIException(Code)(Java Doc) public void internalEntityDecl(String name, XMLString text, XMLString nonNormalizedText, Augmentations augs) throws XNIException(Code)(Java Doc) public void notationDecl(String name, XMLResourceIdentifier identifier, Augmentations augs) throws XNIException(Code)(Java Doc) public void occurrence(short occurrence, Augmentations augs) throws XNIException(Code)(Java Doc) public void pcdata(Augmentations augs) throws XNIException(Code)(Java Doc) public void processingInstruction(String target, XMLString data, Augmentations augs) throws XNIException(Code)(Java Doc) protected void reset() throws XNIException(Code)(Java Doc) public void separator(short separator, Augmentations augs) throws XNIException(Code)(Java Doc) public void setDTDContentModelSource(XMLDTDContentModelSource source)(Code)(Java Doc) public void setDTDSource(XMLDTDSource source)(Code)(Java Doc) public void setDocumentSource(XMLDocumentSource source)(Code)(Java Doc) public void startAttlist(String elementName, Augmentations augs) throws XNIException(Code)(Java Doc) public void startCDATA(Augmentations augs) throws XNIException(Code)(Java Doc) public void startConditional(short type, Augmentations augs) throws XNIException(Code)(Java Doc) public void startContentModel(String elementName, Augmentations augs) throws XNIException(Code)(Java Doc) public void startDTD(XMLLocator locator, Augmentations augs) throws XNIException(Code)(Java Doc) public void startDocument(XMLLocator locator, String encoding, NamespaceContext namespaceContext, Augmentations augs) throws XNIException(Code)(Java Doc) public void startElement(QName element, XMLAttributes attributes, Augmentations augs) throws XNIException(Code)(Java Doc) public void startExternalSubset(XMLResourceIdentifier identifier, Augmentations augmentations) throws XNIException(Code)(Java Doc) public void startGeneralEntity(String name, XMLResourceIdentifier identifier, String encoding, Augmentations augs) throws XNIException(Code)(Java Doc) public void startGroup(Augmentations augs) throws XNIException(Code)(Java Doc) public void startParameterEntity(String name, XMLResourceIdentifier identifier, String encoding, Augmentations augs) throws XNIException(Code)(Java Doc) public void textDecl(String version, String encoding, Augmentations augs) throws XNIException(Code)(Java Doc) public void unparsedEntityDecl(String name, XMLResourceIdentifier identifier, String notation, Augmentations augs) throws XNIException(Code)(Java Doc) public void xmlDecl(String version, String encoding, String standalone, Augmentations augs) throws XNIException(Code)(Java Doc)
|
|
|