изменил иерархию файлов
This commit is contained in:
parent
9ef7ac0df9
commit
dd1eed15cf
52 changed files with 1602 additions and 938 deletions
|
@ -0,0 +1,50 @@
|
|||
/**
|
||||
* Интерфейс позволяющей пользователю работать с потомками ноды
|
||||
*
|
||||
* @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) {
|
||||
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue