Skip to content

class_of_class

GCHQDeveloper42 edited this page Mar 27, 2023 · 5 revisions

Class of Class

A class that is class or any of its subsets.

Note: More formally this means that any member_of the powerset of class is a valid member_of class_of_class.

Subtypes

EXPRESS Specification

Diagram 2

Schema

ENTITY class_of_class
  SUBTYPE OF(class_of_abstract_object);
END_ENTITY;
Inheritance Graph

ENTITY class_of_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;
  ENTITY class_of_abstract_object;
  ENTITY class_of_class;
END_ENTITY;
Clone this wiki locally