Module wmii :: Class WMIIBase
[show private | hide private]
[frames | no frames]

Type WMIIBase

object --+
         |
        WMIIBase

Known Subclasses:
WMII, WMIIClient, WMIIColumn, WMIIView

provides a base framework of methods common to the WMII classes
Method Summary
  __getattr__(self, attr)
Tries to retrieve an unknown attribute via _get_ATTRNAME, or raises AttributeError
  __setattr__(self, attr, val)
Searches for a setter method - _set_ATTRNAME, invokes it if found, or writes the new value to the instance dict
    Inherited from object
  __init__(...)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
  __delattr__(...)
x.__delattr__('name') <==> del x.name
  __getattribute__(...)
x.__getattribute__('name') <==> x.name
  __hash__(x)
x.__hash__() <==> hash(x)
  __new__(T, S, ...)
T.__new__(S, ...) -> a new object with type S, a subtype of T
  __reduce__(...)
helper for pickle
  __reduce_ex__(...)
helper for pickle
  __repr__(x)
x.__repr__() <==> repr(x)
  __str__(x)
x.__str__() <==> str(x)

Method Details

__getattr__(self, attr)
(Qualification operator)

Tries to retrieve an unknown attribute via _get_ATTRNAME, or raises AttributeError

__setattr__(self, attr, val)

Searches for a setter method - _set_ATTRNAME, invokes it if found, or writes the new value to the instance dict
Overrides:
__builtin__.object.__setattr__

Generated by Epydoc 2.1 on Tue Jun 12 22:49:30 2007 http://epydoc.sf.net