initi.doc/docfiles/providers/managers/groupTypes/groupType.js

51 lines
760 B
JavaScript
Raw Normal View History

2018-09-19 10:25:01 +00:00
/**
*
* @class GroupType
* @memberof GroupTypes
*/
function GroupType() {
/**
*
* @public
* @function self
* @memberof GroupTypes.GroupType
2018-09-19 10:40:04 +00:00
* @returns {v2.vc}
2018-09-19 10:25:01 +00:00
*/
this.self = function() {
};
/**
*
* @public
* @function parent
* @memberof GroupTypes.GroupType
2018-09-19 10:40:04 +00:00
* @returns {v2.vc}
2018-09-19 10:25:01 +00:00
*/
this.parent = function() {
};
/**
*
* @public
* @function consist
* @memberof GroupTypes.GroupType
2018-09-19 10:40:04 +00:00
* @returns {v2.vc}
2018-09-19 10:25:01 +00:00
*/
this.consist = function() {
};
/**
*
* @public
* @function attributes
* @memberof GroupTypes.GroupType
* @returns {v2.map(v2.string, v2.vc)}
2018-09-19 10:25:01 +00:00
*/
this.attributes = function() {
};
}