Package oort :: Module display :: Class TemplateAspectBase
[hide private]
[frames] | no frames]

Class TemplateAspectBase

source code

object --+    
         |    
AspectBase --+
             |
            TemplateAspectBase
Known Subclasses:
Aspect, TpltAspect

Instance Methods [hide private]
 
__init__(self, forType, templateName, queries=None, forVariant=None)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
source code
 
post_init_configure(self, cfg) source code
 
__super(type)
super(type, obj) -> bound super object; requires isinstance(obj, type)...
source code

Inherited from AspectBase: generate_query_items, make_result_generator, post_init_setup, using

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

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, forType, templateName, queries=None, forVariant=None)
(Constructor)

source code 
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
Overrides: AspectBase.__init__

post_init_configure(self, cfg)

source code 
Overrides: AspectBase.post_init_configure

__super(type)

source code 
super(type, obj) -> bound super object; requires isinstance(obj, type)
super(type, type2) -> bound super object; requires issubclass(type2, type)
Typical use to call a cooperative superclass method:
class C(B):
    def meth(self, arg):
        super(C, self).meth(arg)

Returns:
unbound super object