entities/test/data/schema.py
author Laure Bourgois <Laure.Bourgois@logilab.fr>
Wed, 18 Feb 2009 16:59:29 +0100
changeset 815 ec7460e13eee
parent 0 b97547f5f1fa
child 1977 606923dff11b
permissions -rw-r--r--
OWLABOX view doesn't layout anymore tbox. Indeed, it is better to separate abox from tbox.

class Company(EntityType):
    name = String()

class Division(Company):
    __specializes_schema__ = True

class SubDivision(Division):
    __specializes_schema__ = True