initi.doc/docfiles/groupTypes/groupType.js

51 lines
762 B
JavaScript

/**
*
* @class GroupType
* @memberof GroupTypes
*/
function GroupType() {
/**
*
* @public
* @function self
* @returns v2.vc
* @memberof GroupTypes.GroupType
*/
this.self = function() {
};
/**
*
* @public
* @function parent
* @returns v2.vc
* @memberof GroupTypes.GroupType
*/
this.parent = function() {
};
/**
*
* @public
* @function consist
* @returns v2.vc
* @memberof GroupTypes.GroupType
*/
this.consist = function() {
};
/**
*
* @public
* @function attributes
* @returns v2.map(v2.string.type, v2.vc.type)
* @memberof GroupTypes.GroupType
*/
this.attributes = function() {
};
}