Package telemeta :: Module core :: Class Component
[hide private]
[frames] | no frames]

Class Component

source code

object --+
         |
        Component

Base class for components.

Every component can declare what extension points it provides, as well as what extension points of other components it extends.

Nested Classes [hide private]
  __metaclass__
Meta class for components.
Instance Methods [hide private]

Inherited from object: __delattr__, __getattribute__, __hash__, __init__, __reduce__, __reduce_ex__, __repr__, __setattr__, __str__

Static Methods [hide private]
a new object with type S, a subtype of T
__new__(cls, *args, **kwargs)
Return an existing instance of the component if it has already been activated, otherwise create a new instance.
source code
Class Variables [hide private]
  _implements = []
Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__new__(cls, *args, **kwargs)
Static Method

source code 

Return an existing instance of the component if it has already been activated, otherwise create a new instance.

Returns: a new object with type S, a subtype of T
Overrides: object.__new__