Package fife :: Package extensions :: Package pychan :: Class _GuiLoader
[hide private]
[frames] | no frames]

Class _GuiLoader

source code

                        object --+
                                 |
xml.sax.handler.ContentHandler --+
                                 |
                                _GuiLoader

Instance Methods [hide private]
 
__init__(self)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
source code
 
_printTag(self, name, attrs) source code
 
_resolveTag(self, name)
Resolve a XML Tag to a PyChan GUI class.
source code
 
_setAttr(self, obj, name, value) source code
 
startElement(self, name, attrs)
Signals the start of an element in non-namespace mode.
source code
 
_createInstance(self, cls, name, attrs) source code
 
_createSpacer(self, cls, name, attrs) source code
 
endElement(self, name)
Signals the end of an element in non-namespace mode.
source code

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

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

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self)
(Constructor)

source code 

x.__init__(...) initializes x; see x.__class__.__doc__ for signature

Overrides: xml.sax.handler.ContentHandler.__init__

startElement(self, name, attrs)

source code 

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, name)

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)