Package Bio :: Module StdHandler :: Class RecognizeHandler
[hide private]
[frames] | no frames]

Class RecognizeHandler

source code

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

Instance Methods [hide private]
 
__init__(self) source code
 
fatalError(self, exc)
Handle a non-recoverable error.
source code
 
error(self, exc)
Handle a non-recoverable error.
source code
 
endElement(self, tag)
Signals the end of an element in non-namespace mode.
source code

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

Inherited from xml.sax.handler.ErrorHandler: warning

Method Details [hide private]

__init__(self)
(Constructor)

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

fatalError(self, exc)

source code 

Handle a non-recoverable error.

Overrides: xml.sax.handler.ErrorHandler.fatalError
(inherited documentation)

error(self, exc)

source code 

Handle a non-recoverable error.

Overrides: xml.sax.handler.ErrorHandler.error
(inherited documentation)

endElement(self, tag)

source code 

Signals the end of an element in non-namespace mode.

The name parameter contains the name of the element type, just as with the startElement event.

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