initi.doc/docfiles/providers/managers/trees/globalTree/children/manager.js

50 lines
1.1 KiB
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
* @class Children
* @memberof Trees.GlobalTree.Node
*/
function Children() {
/**
*
* @name s_node_add
* @public
* @memberof Trees.GlobalTree.Node.Children
* @type {number}
*/
this.s_node_add = -1;
/**
*
* @name s_change
* @public
* @memberof Trees.GlobalTree.Node.Children
* @type {number}
*/
this.s_change = -1;
/**
* Возвращает список потомков ноды
*
* @public
* @function get
* @returns {v2.list(v2.integer.type)}
* @memberof Trees.GlobalTree.Node.Children
*/
this.children = function(attributeName) {
};
/**
* Возвращает тип ноды, по ее идентификатору
*
* @public
* @function get_type_by_id
* @returns {v2.model_type}
* @memberof Trees.GlobalTree.Node.Children
*/
this.get_type_by_id = function(attributeName) {
};
}