Class AbstractDecorator
An abstract decorator that directs all attribute/method access first
here, then to the decorated object, then back here (for the first time
something is set).
Subclasses *must* call AbstractDecorator.__init__ before setting any
self. variables or other attributes (so the _decorated_object can be set
up).
| Method Summary |
| |
__init__(self,
obj)
|
| |
__cmp__(self,
other)
|
| |
__delattr__(self,
name)
|
| |
__eq__(self,
other)
|
| |
__ge__(self,
other)
|
| |
__getattr__(self,
name)
|
| |
__gt__(self,
other)
|
| |
__hash__(self)
|
| |
__le__(self,
other)
|
| |
__lt__(self,
other)
|
| |
__ne__(self,
other)
|
| |
__nonzero__(self)
|
| |
__repr__(self)
|
| |
__setattr__(self,
name,
value)
|
| |
__str__(self)
|