Package Ganga :: Package GPIDev :: Package Lib :: Package Config :: Module Config :: Class ConfigProxy
[hide private]
[frames] | no frames]

Class ConfigProxy

source code

object --+
         |
        ConfigProxy

A proxy for a single configuration unit. This is a base class which is inherited by a concrete proxy class for each configuration unit. In each inherited class descriptors (attreibutes) are set for all configuration options. This is done by the bootstrap() function.

Instance Methods [hide private]
 
__init__(self, impl)
x.__init__(...) initializes x; see help(type(x)) for signature
source code
 
__getitem__(self, o) source code
 
__setattr__(self, o, v)
x.__setattr__('name', value) <==> x.name = value
source code
 
__setitem__(self, o, v)
x.__setattr__('name', value) <==> x.name = value
source code
 
__iter__(self) source code
 
__str__(self)
str(x)
source code
 
_display(self, colour) source code

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

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, impl)
(Constructor)

source code 

x.__init__(...) initializes x; see help(type(x)) for signature

Overrides: object.__init__
(inherited documentation)

__setattr__(self, o, v)

source code 

x.__setattr__('name', value) <==> x.name = value

Overrides: object.__setattr__
(inherited documentation)

__str__(self)
(Informal representation operator)

source code 

str(x)

Overrides: object.__str__
(inherited documentation)