initi.doc/docfiles/providers/interface/platform.js

73 lines
1.2 KiB
JavaScript
Raw Normal View History

/**
*
* @group providers_interface
* @namespace Platform
*/
function Platform() {
/**
* @public
* @name tm
* @type {Trees}
* @memberof Platform
*/
this.tm = new Trees();
/**
*
* @public
* @name mm
* @type {Models}
* @memberof Platform
*/
this.mm = new Models();
/**
*
* @public
* @function core_translations
* @memberof Platform
* @returns {CoreTranslations}
*/
this.core_translations = new CoreTranslations();
/**
*
* @public
* @function core_config
* @memberof Platform
* @returns {CoreConfig}
*/
this.core_config = new CoreConfig();
/**
*
* @public
* @function datasource_manager
* @memberof Platform
* @returns {Datasource}
*/
this.datasource_manager = new Datasource();
/**
*
* @public
* @function m_sys_addr
* @memberof Platform
* @returns {v2.address}
*/
this.m_sys_addr = function () {
};
/**
*
* @public
* @function m_address
* @memberof Platform
* @returns {v2.address}
*/
this.m_address = function () {
};
}