Module latex2esis :: Class TableHandler
[hide private]
[frames] | no frames]

_ClassType TableHandler

xml.sax.handler.ContentHandler --+
                                 |
                                TableHandler

Instance Methods [hide private]
 
__init__(self)
 
get_table(self)
 
startElement(self, tag, attrs)
Signals the start of an element in non-namespace mode.
 
endElement(self, tag)
Signals the end of an element in non-namespace mode.
 
endDocument(self)
Receive notification of the end of a document.
 
characters(self, data)
Receive notification of character data.
 
start_environment(self, attrs)
 
end_environment(self)
 
start_macro(self, attrs)
 
end_macro(self)
 
start_attribute(self, attrs)
 
end_attribute(self)
 
start_entityref(self, attrs)
 
start_child(self, attrs)
 
start_content(self, attrs)
 
start_text(self, attrs)
 
end_text(self)

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

Method Details [hide private]

__init__(self)
(Constructor)

 
Overrides: xml.sax.handler.ContentHandler.__init__

startElement(self, tag, attrs)

 

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

The name parameter contains the raw XML 1.0 name of the element type as a string and the attrs parameter holds an instance of the Attributes class containing the attributes of the element.

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

endElement(self, tag)

 

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)

endDocument(self)

 

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)

characters(self, data)

 

Receive notification of character data.

The Parser will call this method to report each chunk of character data. SAX parsers may return all contiguous character data in a single chunk, or they may split it into several chunks; however, all of the characters in any single event must come from the same external entity so that the Locator provides useful information.

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