doc/book/en/development/datamodel/inheritance.rst
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Thu, 15 Oct 2009 11:20:23 +0200
changeset 3677 acdba524bb8f
parent 3257 0d953f0b41c4
permissions -rw-r--r--
fix i18ncube


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