| Method Summary |
| |
__init__(self,
name,
category)
create a configurable given a unique name |
| |
components(self)
return a list of all the components in my inventory |
| |
configure(self,
curator,
registry)
initialize and configure my inventory |
| |
configureComponent(self,
component)
individual component configuration for the late comers |
| |
configureComponents(self)
guide my subcomponents through the configuration process |
| |
configureProperties(self)
set the values of all the properties and facilities in my
inventory |
| |
facilities(self)
return a list of all the facility objects in my inventory |
| |
getConfiguration(self,
registry)
place the current configuration of my inventory in the given
registry |
| |
properties(self)
return a list of all the property objects in my inventory |
| |
setCurator(self,
curator)
attach a persistent store manager to my inventory |
| |
updateConfiguration(self,
registry)
update my configuration using settings from the given registry |
| Inherited from object |
| |
__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) |
| |
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value |
| |
__str__(x)
x.__str__() <==> str(x) |