/** * * @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() { }; }