specialization - hqdmTop/hqdmFramework GitHub Wiki
A
relationshipwhere eachmember__ofthe subclass is amember__ofthe superclass.
-
superclass: A relationship type where eachspecializationhas exactly oneclassassuperclass. -
subclass: A relationship type where eachspecializationhas exactly oneclassassubclass.

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;