23 lines
515 B
JavaScript
23 lines
515 B
JavaScript
/**
|
|
*
|
|
*
|
|
*
|
|
* @group manager
|
|
* @class ConsistencyTree
|
|
* @extends Trees.GlobalAttributeTree
|
|
* @memberof Trees
|
|
*/
|
|
function ConsistencyTree() {
|
|
/**
|
|
* Вернет список парентов для указанного компонента.
|
|
*
|
|
* @public
|
|
* @function get_model_type_parents
|
|
* @param {v2.model_type} _model_type
|
|
* @memberof Trees.ConsistencyTree
|
|
* @returns {v2.deque<v2.model_type>}
|
|
*/
|
|
this.get_model_type_parents = function(_model_type) {
|
|
|
|
};
|
|
} |