initi.doc/docfiles/providers/managers/trees/schemeTree/node.js

33 lines
658 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.

/**
* @class Node
* @extends Trees.GlobalTree.Node
* @memberof Trees.SchemeTree
*/
function Node() {
/**
* Возвращает адрес модели связанный с этой нодой.
*
* @public
* @function model_addr
* @memberof Trees.SchemeTree.Node
* @returns {v2.address}
*/
this.model_addr = function() {
};
/**
* Указывает, является ли данная нода контейнером.
*
* @public
* @function is_container
* @memberof Trees.SchemeTree.Node
* @returns {v2.boolean}
*/
this.is_container = function() {
};
}