--- a/doc/book/en/development/datamodel/inheritance.rst Tue Sep 15 17:43:56 2009 +0200
+++ b/doc/book/en/development/datamodel/inheritance.rst Wed Sep 16 16:14:48 2009 +0200
@@ -5,4 +5,14 @@
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