initi.doc/docfiles/providers/managers/publishers/base/items/attributes/attribute.js

51 lines
1.1 KiB
JavaScript

/** @typedef {Publishers.PublisherManager.Publisher.Items.Item.Attributes.Attribute} PublisherItemAttribute */
/**
*
* @group manager
* @class Attribute
* @memberof Publishers.PublisherManager.Publisher.Items.Item.Attributes
*/
var Attribute = function () {
/**
*
* @name s_size_change
* @public
* @memberof Publishers.PublisherManager.Publisher.Items.Item.Attributes.Attribute
* @type {number}
*/
this.s_size_change = -1;
/**
*
* @public
* @function name
* @memberof Publishers.PublisherManager.Publisher.Items.Item.Attributes.Attribute
* @returns {v2.string}
*/
this.name = function () {
};
/**
*
* @public
* @function value
* @memberof Publishers.PublisherManager.Publisher.Items.Item.Attributes.Attribute
* @returns {v2}
*/
this.value = function () {
};
/**
*
* @public
* @function type
* @memberof Publishers.PublisherManager.Publisher.Items.Item.Attributes.Attribute
* @returns {v2.type}
*/
this.type = function () {
}
};