initi.doc/docfiles/providers/managers/links/attributes/attribute.js
Aleksey Chichenkov eeb2b01574 links manager
2019-07-01 16:36:27 +03:00

63 lines
1.4 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* #### Атрибут линка
*
* <br>
* Связанные объекты:
*
* - {@link Links} - Менеджер предоставляющий доступ к данным о линках
* - {@link Links.Link} - Модель линка
* - {@link Links.Link.Attributes} - Менеджер предоставляющий доступ к атрибутам линка
*
* @group manager
* @class Attribute
* @memberof Links.Link.Attributes
*/
function Attribute() {
/**
* Возвращает имя атрибута
*
* @public
* @function name
* @returns {v2.string}
* @memberof Links.Link.Attributes.Attribute
*/
this.name = function() {
};
/**
* Возвращает мета атрибуты атрибута
*
* @public
* @function data
* @returns {v2}
* @memberof Links.Link.Attributes.Attribute
*/
this.data = function() {
};
/**
* Возвращает значение атрибута
*
* @public
* @function value
* @returns {v2}
* @memberof Links.Link.Attributes.Attribute
*/
this.value = function() {
};
/**
* Возвращает тип атрибута
*
* @public
* @function type
* @returns {v2.type}
* @memberof Links.Link.Attributes.Attribute
*/
this.type = function() {
};
}