Home | Trees | Index | Help |
|
---|
Package nevow :: Module inevow :: Class IContainer |
|
object
--+ |Interface
--+ | IContainer
Method Summary | |
---|---|
Return a conceptual child; an attribute, or a key, or the result of a function call. | |
Inherited from Interface | |
(Class method) | |
Inherited from object | |
x.__init__(...) initializes x; see x.__class__.__doc__ for signature | |
x.__delattr__('name') <==> del x.name | |
x.__getattribute__('name') <==> x.name | |
x.__hash__() <==> hash(x) | |
T.__new__(S, ...) -> a new object with type S, a subtype of T | |
helper for pickle | |
helper for pickle | |
x.__repr__() <==> repr(x) | |
x.__setattr__('name', value) <==> x.name = value | |
x.__str__() <==> str(x) |
Instance Method Details |
---|
child(self, context, name)Return a conceptual child; an attribute, or a key, or the result of a function call. Returns any object; the result may be adapted to IGettable if possible. Return None if the adaptee does not have a child with the given name. TODO: Maybe returning None is bad, and .child should just raise whatever exception is natural |
Home | Trees | Index | Help |
|
---|
Generated by Epydoc 2.1 on Fri Mar 11 00:37:46 2005 | http://epydoc.sf.net |