изменил иерархию файлов

This commit is contained in:
Aleksey Chichenkov 2018-09-24 19:03:29 +03:00
parent 9ef7ac0df9
commit dd1eed15cf
52 changed files with 1602 additions and 938 deletions

View file

@ -0,0 +1,59 @@
/**
*
* @group providers_interface
* @namespace Platform
*/
function Platform() {
/**
* @name tm
* @public
* @type {Trees}
* @memberof Platform
*/
this.tm = new Trees();
/**
*
* @public
* @function mm
* @memberof Platform
* @returns {Models}
*/
this.mm = function () {
};
/**
*
* @public
* @function core_translations
* @memberof Platform
* @returns {CoreTranslations}
*/
this.core_translations = function () {
};
/**
*
* @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 () {
};
}

View file

@ -0,0 +1,79 @@
/**
*
* @group providers_interface
* @namespace ProvidersSystem
*/
function ProvidersSystem() {
/**
*
* @public
* @function start
* @memberof ProvidersSystem
*/
this.start = function () {
};
/**
*
* @public
* @function login
* @memberof ProvidersSystem
* @param _login {string}
* @param _password {string}
* @param _callback {function}
*/
this.login = function (_login, _password, _callback) {
};
/**
*
* @public
* @function break_connection
* @memberof ProvidersSystem
*/
this.break_connection = function () {
};
/**
* @name s_connected
* @public
* @memberof ProvidersSystem
* @type {number}
*/
this.s_connected = -1;
/**
* @name s_connecting
* @public
* @memberof ProvidersSystem
* @type {number}
*/
this.s_connecting = -1;
/**
* @name s_platform_up
* @public
* @memberof ProvidersSystem
* @type {number}
*/
this.s_platform_up = -1;
/**
* @name s_platform_down
* @public
* @memberof ProvidersSystem
* @type {number}
*/
this.s_platform_down = -1;
/**
* @name s_platform_broken
* @public
* @memberof ProvidersSystem
* @type {number}
*/
this.s_platform_broken = -1;
}