Version: 0.2
Date: 15 september, 2000
Declared in: GSXML.h
Inherits from: NSObject
XML SAX Handler.
GSSAXHandler is a callback-based interface to the XML parser that operates in a similar (though not identical) manner to SAX.
Each GSSAXHandler object is associated with a GSXMLParser object. As parsing progresses, the mathods of the GSSAXHandler are invoked by the parser, so the handler is able to deal with the elements and entities being parsed.
The callback methods in the GSSAXHandler class do nothing - it is intended that you subclass GSSAXHandler and override them.
Create a new SAX handler.
Return pointer to xmlSAXHandler structure.
Return the parser object with which this handler is associated. This may occasionally be useful.
Called when the document start being processed.
Called when the document end has been detected.
Called if the document is standalone.
Called when an opening tag has been processed.
Called when the end of an element has been detected.
Handle an attribute that has been read by the parser.
Receiving some chars from the parser.
Receiving some ignorable whitespaces from the parser.
A processing instruction has been parsed.
A comment has been parsed.
Called when a pcdata block has been parsed.
An old global namespace has been parsed.
Called when found a error.
Called when found a fatal error.
Called when found a warning.
Callback on internal subset declaration.
Does this document have an external subset.
Callback on internal subset declaration.
Callback on external subset declaration.
The entity loader, to control the loading of external entities, the application can either.
Get an entity by name.
Get a parameter entity by name.
A namespace has been parsed.
What to do when a notation declaration has been parsed.
An entity definition has been parsed.
An attribute definition has been parsed.
An element definition has been parsed.
What to do when an unparsed entity declaration is parsed.
Called when an entity reference is detected.