initi.doc/docfiles/providers/managers/models/manager.js

22 lines
702 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* Менеджер моделей.
* Представляет собой интерфейс для доступа ко всем моделям
* Позволяет по адресу модели, получить на нее ссылку.
*
* @group manager
* @namespace Models
*/
function Models() {
/**
* Вернет ссылку на модель. В качестве идентификатора следует указать адрес дерева.
*
* @public
* @function get
* @param {v2.address} address Адрес модели
* @returns {tools.promise(Models.Model)}
* @memberof Models
*/
this.get = function (address) {
};
}