author | Sylvain Thénault <sylvain.thenault@logilab.fr> |
Mon, 25 Jan 2010 19:18:33 +0100 | |
changeset 4339 | fe93b670343d |
parent 3257 | 0d953f0b41c4 |
permissions | -rw-r--r-- |
Inheritance ----------- When describing a data model, entities can inherit from other entities as is common in object-oriented programming. You have the possibility to adapt some entity attributes, as follow: .. sourcecode:: python from cubes.OTHER_CUBE import entities class EntityExample(entities.EntityExample): def dc_long_title(self): return '%s (%s)' % (self.name, self.description) XXX WRITME