Package Martel :: Package test :: Module support :: Class CheckGood
[hide private]
[frames] | no frames]

Class CheckGood

source code

xml.sax.handler.ContentHandler --+
                                 |
  xml.sax.handler.ErrorHandler --+
                                 |
                                CheckGood

Instance Methods [hide private]
 
__init__(self) source code
 
startDocument(self)
Receive notification of the beginning of a document.
source code
 
endDocument(self)
Receive notification of the end of a document.
source code

Inherited from xml.sax.handler.ContentHandler: characters, endElement, endElementNS, endPrefixMapping, ignorableWhitespace, processingInstruction, setDocumentLocator, skippedEntity, startElement, startElementNS, startPrefixMapping

Inherited from xml.sax.handler.ErrorHandler: error, fatalError, warning

Method Details [hide private]

__init__(self)
(Constructor)

source code 
Overrides: xml.sax.handler.ContentHandler.__init__

startDocument(self)

source code 

Receive notification of the beginning of a document.

The SAX parser will invoke this method only once, before any other methods in this interface or in DTDHandler (except for setDocumentLocator).

Overrides: xml.sax.handler.ContentHandler.startDocument
(inherited documentation)

endDocument(self)

source code 

Receive notification of the end of a document.

The SAX parser will invoke this method only once, and it will be the last method invoked during the parse. The parser shall not invoke this method until it has either abandoned parsing (because of an unrecoverable error) or reached the end of input.

Overrides: xml.sax.handler.ContentHandler.endDocument
(inherited documentation)