-
Notifications
You must be signed in to change notification settings - Fork 1
class
GCHQDeveloper42 edited this page Mar 27, 2023
·
5 revisions
An
abstract_object
that has members and whose identity is defined by its membership.
-
member__of
: Amember_of
relationship type where a class may be amember_of
one or moreclass_of_class
. -
has_superclass
: A relationship type where eachmember_of
theclass
is amember_of
the superclass.
ENTITY class
SUPERTYPE OF (ONEOF(class_of_spatio_temporal_extent, class_of_abstract_object) ANDOR enumerated_class)
SUBTYPE OF(abstract_object);
member_of : OPTIONAL SET [1:?] OF class_of_class;
has_superclass : OPTIONAL SET [1:?] OF class;
END_ENTITY;
Inheritance Graph
ENTITY class;
ENTITY thing;
member__of : OPTIONAL SET [1:?] OF class;
ENTITY abstract_object;
ENTITY class;
member_of : OPTIONAL SET [1:?] OF class_of_class;
has_superclass : OPTIONAL SET [1:?] OF class;
END_ENTITY;