doc/book/en/development/datamodel/inheritance.rst
author Alexandre Fayolle <alexandre.fayolle@logilab.fr>
Fri, 12 Feb 2010 12:57:14 +0100
branchstable
changeset 4555 8968c50818db
parent 3257 0d953f0b41c4
permissions -rw-r--r--
typo fix in help string


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