подправил стили для кода примеров. Добавил 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,51 @@
/** @typedef {Publishers.Publisher.Items.Item.Attributes.Attribute} PublisherItemAttribute */
/**
*
* @group manager
* @class Attribute
* @memberof Publishers.Publisher.Items.Item.Attributes
*/
var Attribute = function () {
/**
*
* @name s_size_change
* @public
* @memberof Publishers.Publisher.Items.Item.Attributes.Attribute
* @type {number}
*/
this.s_size_change = -1;
/**
*
* @public
* @function name
* @memberof Publishers.Publisher.Items.Item.Attributes.Attribute
* @returns {v2.string}
*/
this.name = function () {
};
/**
*
* @public
* @function value
* @memberof Publishers.Publisher.Items.Item.Attributes.Attribute
* @returns {v2}
*/
this.value = function () {
};
/**
*
* @public
* @function type
* @memberof Publishers.Publisher.Items.Item.Attributes.Attribute
* @returns {v2.type}
*/
this.type = function () {
}
};

View file

@ -0,0 +1,32 @@
/**
*
* @group manager
* @class Attributes
* @memberof Publishers.Publisher.Items.Item
*/
var Attributes = function () {
/**
*
* @public
* @function get
* @memberof Publishers.Publisher.Items.Item.Attributes
* @param _id {v2.integer}
* @returns {tools.promise(PublisherItemAttribute)}
*/
this.get = function (_id) {
};
/**
*
* @public
* @function attributes
* @memberof Publishers.Publisher.Items.Item.Attributes
* @returns {v2.list(v2.string)}
*/
this.attributes = function () {}
};

View file

@ -0,0 +1,32 @@
/** @typedef {Publishers.Publisher.Items.Item} PublisherItem */
/**
*
* @group manager
* @class Item
* @memberof Publishers.Publisher.Items
*/
var Item = function () {
/**
*
* @function id
* @public
* @memberof Publishers.Publisher.Items.Item
* @type {v2.integer}
*/
this.id = function () {
};
/**
*
* @public
* @function get
* @memberof Publishers.Publisher.Items.Item
* @param _index {v2.integer}
* @returns {tools.promise(PublisherItemAttribute)}
*/
this.get = function (_index) {
};
};

View file

@ -1,151 +0,0 @@
/** @typedef {Publishers.Publisher.Items.Item} PublisherItem */
/** @typedef {Publishers.Publisher.Items.Item.Attributes.Attribute} PublisherItemAttribute */
/**
*
* @group manager
* @class Items
* @memberof Publishers.Publisher
*/
var Items = function () {
/**
*
* @public
* @function get
* @memberof Publishers.Publisher.Items
* @param _id {v2.integer}
* @returns {tools.promise(PublisherItem)}
*/
this.get = function (_id) {
};
/**
*
* @public
* @function is_exist
* @memberof Publishers.Publisher.Items
* @param _id {v2.integer}
* @returns {boolean}
*/
this.is_exist = function (_id) {
};
/**
*
* @group manager
* @class Item
* @memberof Publishers.Publisher.Items
*/
var Item = function () {
/**
*
* @name id
* @public
* @memberof Publishers.Publisher.Items.Item
* @type {v2.integer}
*/
this.id = function () {
};
/**
*
* @public
* @function get
* @memberof Publishers.Publisher.Items.Item
* @param _index {v2.integer}
* @returns {tools.promise(PublisherItemAttribute)}
*/
this.get = function (_index) {
};
};
};
/**
*
* @group manager
* @class Attributes
* @memberof Publishers.Publisher.Items.Item
*/
var Attributes = function () {
/**
*
* @public
* @function get
* @memberof Publishers.Publisher.Items.Item.Attributes
* @param _id {v2.integer}
* @returns {tools.promise(PublisherItemAttribute)}
*/
this.get = function (_id) {
};
/**
*
* @public
* @function attributes
* @memberof Publishers.Publisher.Items.Item.Attributes
* @returns {v2.list(v2.string)}
*/
this.attributes = function () {}
/**
*
* @group manager
* @class Attribute
* @memberof Publishers.Publisher.Items.Item.Attributes
*/
var Attribute = function () {
/**
*
* @name s_size_change
* @public
* @memberof Publishers.Publisher.Items.Item.Attributes.Attribute
* @type {number}
*/
this.s_size_change = -1;
/**
*
* @public
* @function name
* @memberof Publishers.Publisher.Items.Item.Attributes.Attribute
* @returns {v2.string}
*/
this.name = function () {
};
/**
*
* @public
* @function value
* @memberof Publishers.Publisher.Items.Item.Attributes.Attribute
* @returns {v2}
*/
this.value = function () {
};
/**
*
* @public
* @function type
* @memberof Publishers.Publisher.Items.Item.Attributes.Attribute
* @returns {v2.type}
*/
this.type = function () {
}
};
};

View file

@ -0,0 +1,34 @@
/**
*
* @group manager
* @class Items
* @memberof Publishers.Publisher
*/
var Items = function () {
/**
*
* @public
* @function get
* @memberof Publishers.Publisher.Items
* @param _id {v2.integer}
* @returns {tools.promise(PublisherItem)}
*/
this.get = function (_id) {
};
/**
*
* @public
* @function is_exist
* @memberof Publishers.Publisher.Items
* @param _id {v2.integer}
* @returns {boolean}
*/
this.is_exist = function (_id) {
};
};