| Trees | Indices | Help |
|---|
|
|
object --+
|
AutoPropertyObject
A class that dynamicly supports properties, by looking up _get_* and
_set_* methods at runtime. _get_x will make property x with a getter (you
can get its value). _set_x will make a property x with a setter (you can
set its value). If there is a _get_x but no _set_x then setting x will
override the property completely. Properties can also be cached for the
duration of one core pump cycle. This is useful if the same property is
likely to be fetched multiple times in one cycle. For example, several
NVDAObject properties are fetched by both braille and speech. Setting
_cache_x to True specifies that x should be cached. Setting
it to False specifies that it should not be cached. If
_cache_x is not set, cachePropertiesByDefault is used.
|
|||
| __metaclass__ | |||
|
|||
|
|||
|
|||
|
|||
|
Inherited from |
|||
|
|||
|
|||
|
|||
__instances = weakref.WeakKeyDictionary()
|
|||
cachePropertiesByDefault = False
|
|||
|
|||
|
Inherited from |
|||
|
|||
x.__init__(...) initializes x; see help(type(x)) for signature
|
| Trees | Indices | Help |
|---|
| Generated by Epydoc 3.0.1 on Fri Nov 18 17:45:57 2011 | http://epydoc.sourceforge.net |