подправил стили для кода примеров. Добавил 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,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 () {
|
||||
|
||||
};
|
||||
};
|
|
@ -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) {
|
||||
|
||||
};
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue