подправил стили для кода примеров. Добавил std, v2, tools, v2.ll.
This commit is contained in:
parent
2c27a64ea0
commit
73f3735bb6
54 changed files with 1579 additions and 342 deletions
|
@ -0,0 +1,44 @@
|
|||
/** @typedef {Models.Model.Groups.Group.Components.Component} ModelComponent */
|
||||
|
||||
/**
|
||||
*
|
||||
* @group manager
|
||||
* @class Component
|
||||
* @extends item
|
||||
* @memberof Models.Model.Groups.Group.Components
|
||||
*/
|
||||
var Component = function () {
|
||||
/**
|
||||
*
|
||||
* @public
|
||||
* @function address
|
||||
* @memberof Models.Model.Groups.Group.Components.Component
|
||||
* @returns {v2.address}
|
||||
*/
|
||||
this.address = function () {
|
||||
|
||||
};
|
||||
|
||||
/**
|
||||
*
|
||||
* @public
|
||||
* @function attributes
|
||||
* @memberof Models.Model.Groups.Group.Components.Component
|
||||
* @returns {v2.map(v2.string, v2.vc)}
|
||||
*/
|
||||
this.attributes = function () {
|
||||
|
||||
};
|
||||
|
||||
/**
|
||||
*
|
||||
* @public
|
||||
* @function address
|
||||
* @memberof Models.Model.Groups.Group.Components.Component
|
||||
* @param attrName {v2.string}
|
||||
* @returns {tools.promise(ComponentAttribute)}
|
||||
*/
|
||||
this.get = function (attrName) {
|
||||
|
||||
};
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue