подправил стили для кода примеров. Добавил std, v2, tools, v2.ll.

This commit is contained in:
Aleksey Chichenkov 2018-09-25 15:14:18 +03:00
parent 2c27a64ea0
commit 73f3735bb6
54 changed files with 1579 additions and 342 deletions

View file

@ -0,0 +1,54 @@
/** @typedef {Models.Model.Groups.Group.Components.Component.Attributes.Attribute} ComponentAttribute */
/**
*
* @group manager
* @class Attribute
* @extends item
* @memberof Models.Model.Groups.Group.Components.Component.Attributes
*/
var Attribute = function () {
/**
*
* @public
* @function name
* @memberof Models.Model.Groups.Group.Components.Component.Attributes.Attribute
* @returns {v2.string}
*/
this.name = function () {
};
/**
*
* @public
* @function type
* @memberof Models.Model.Groups.Group.Components.Component.Attributes.Attribute
* @returns {v2.type}
*/
this.type = function () {
};
/**
*
* @public
* @function last_change
* @memberof Models.Model.Groups.Group.Components.Component.Attributes.Attribute
* @returns {v2.time}
*/
this.last_change = function () {
};
/**
*
* @public
* @function value
* @memberof Models.Model.Groups.Group.Components.Component.Attributes.Attribute
* @returns {v2}
*/
this.value = function () {
};
};

View file

@ -0,0 +1,31 @@
/**
*
* @group manager
* @class Attributes
* @extends manager
* @memberof Models.Model.Groups.Group.Components.Component
*/
var Attributes = function () {
/**
*
* @public
* @function attributes
* @memberof Models.Model.Groups.Group.Components.Component.Attributes
* @returns {v2.map(v2.string, v2.vc)}
*/
this.attributes = function () {
};
/**
*
* @public
* @function get
* @memberof Models.Model.Groups.Group.Components.Component.Attributes
* @param name {v2.string}
* @returns {tools.promise(ModelComponent)}
*/
this.get = function (name) {
};
};