51 lines
1001 B
JavaScript
51 lines
1001 B
JavaScript
|
/** @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 () {
|
||
|
|
||
|
}
|
||
|
};
|