class documentation

Adder for componentized adapter tests.

Method __init__ Set my 'original' attribute to be the object I am adapting.
Method add Undocumented
Instance Variable num Undocumented

Inherited from Adapter:

Method __conform__ I forward __conform__ to self.original if it has it, otherwise I simply return None.
Method isuper Forward isuper to self.original
Class Variable multiComponent If this adapter is persistent, should it be automatically registered for all appropriate interfaces.
Class Variable temporaryAdapter If this is True, the adapter will not be persisted on the Componentized.
Instance Variable original Undocumented
def __init__(self, original): (source)

Set my 'original' attribute to be the object I am adapting.

def add(self, num): (source)

Undocumented

Undocumented