/** * @class static * @memberof Models.Model * @extends item */ var static_data = function () { /** * * @public * @function label_attrs * @memberof Models.Model.static * @returns {v2.set(v2.string)} */ this.label_attrs = function () { }; /** * * @public * @function popup_attrs * @memberof Models.Model.static * @returns {v2.set(v2.string)} */ this.popup_attrs = function () { }; /** * * @public * @function is_container * @memberof Models.Model.static * @returns {v2.boolean} */ this.is_container = function () { }; /** * * @public * @function base_component_type * @memberof Models.Model.static * @returns {v2.model_type} */ this.base_component_type = function () { }; /** * * @public * @function touch * @memberof Models.Model.static * @returns {tools.promise} */ this.touch = function () { } };