-
Notifications
You must be signed in to change notification settings - Fork 1
specialization
GCHQDeveloper42 edited this page Mar 27, 2023
·
3 revisions
A
relationship
where eachmember__of
the subclass is amember__of
the superclass.
-
superclass
: A relationship type where eachspecialization
has exactly oneclass
assuperclass
. -
subclass
: A relationship type where eachspecialization
has exactly oneclass
assubclass
.
ENTITY specialization
SUBTYPE OF(relationship);
superclass : class;
subclass : class;
END_ENTITY;
Inheritance Graph
ENTITY specialization;
ENTITY thing;
member__of : OPTIONAL SET [1:?] OF class;
ENTITY abstract_object;
ENTITY relationship;
member_of : OPTIONAL SET [1:?] OF class_of_relationship;
ENTITY specialization;
superclass : class;
subclass : class;
END_ENTITY;