entities/__init__.py
branchtls-sprint
changeset 1417 06af20e663f2
parent 1398 5fe84a5f7035
child 1493 8270580b65a0
equal deleted inserted replaced
1416:67e3e9d93f2c 1417:06af20e663f2
    23     """an entity instance has e_schema automagically set on the class and
    23     """an entity instance has e_schema automagically set on the class and
    24     instances have access to their issuing cursor
    24     instances have access to their issuing cursor
    25     """
    25     """
    26     id = 'Any'                    
    26     id = 'Any'                    
    27     __implements__ = (IBreadCrumbs, IFeed)
    27     __implements__ = (IBreadCrumbs, IFeed)
    28     
    28 
    29     @classmethod
    29     @classmethod
    30     def selected(cls, etype):
    30     def selected(cls, etype):
    31         """the special Any entity is used as the default factory, so
    31         """the special Any entity is used as the default factory, so
    32         the actual class has to be constructed at selection time once we
    32         the actual class has to be constructed at selection time once we
    33         have an actual entity'type
    33         have an actual entity'type