Overview Index

SDAI_DICTIONARY_SCHEMA (jsdai.dictionary)


FUNCTION get_list_of_entity_definition
          (generic_supertypes : LIST [0:?] OF entity_or_view_definition) : LIST [0:?] OF entity_definition;

LOCAL supertypes : LIST OF entity_definition := [ ];
END_LOCAL;
REPEAT i := 1 TO SIZEOF(generic_supertypes);
IF 'extended_dictionary_schema.entity_definition' IN TYPEOF(generic_supertypes [ i ])THEN supertypes := supertypes + generic_supertypes [ i ];
END_IF;
END_REPEAT;
RETURN(supertypes);

END_FUNCTION; -- get_list_of_entity_definition

public class FGet_list_of_entity_definition
          public static Value run(SdaiContext _context, Value generic_supertypes)