Namespace

meta

mx.meta

Get information about the domain model.

Methods

# static getEntity(entity) → {mendix/lib/MxMetaObject}

Retrieves meta data for an entity in the domain model.

Parameters:
Name Type Description
entity string

name of the entity

the MxMetaObject of the requested entity

Example
mx.meta.getEntity("System.Image") // returns the MxMetaObject for System.Image

# static getMap() → {Object.<string, mendix/lib/MxMetaObject>}

Retrieves all meta data of the domain model.

key-value pairs of entity name and MxMetaObject.

Object.<string, mendix/lib/MxMetaObject>