add v2 lib
This commit is contained in:
parent
d666a13d72
commit
8ca929c8e5
18 changed files with 252 additions and 15 deletions
50
docfiles/managers/groupTypes/groupType.js
Normal file
50
docfiles/managers/groupTypes/groupType.js
Normal file
|
@ -0,0 +1,50 @@
|
|||
/**
|
||||
*
|
||||
* @class GroupType
|
||||
* @memberof GroupTypes
|
||||
*/
|
||||
function GroupType() {
|
||||
/**
|
||||
*
|
||||
* @public
|
||||
* @function self
|
||||
* @memberof GroupTypes.GroupType
|
||||
* @returns {v2.vc}
|
||||
*/
|
||||
this.self = function() {
|
||||
|
||||
};
|
||||
|
||||
/**
|
||||
*
|
||||
* @public
|
||||
* @function parent
|
||||
* @memberof GroupTypes.GroupType
|
||||
* @returns {v2.vc}
|
||||
*/
|
||||
this.parent = function() {
|
||||
|
||||
};
|
||||
|
||||
/**
|
||||
*
|
||||
* @public
|
||||
* @function consist
|
||||
* @memberof GroupTypes.GroupType
|
||||
* @returns {v2.vc}
|
||||
*/
|
||||
this.consist = function() {
|
||||
|
||||
};
|
||||
|
||||
/**
|
||||
*
|
||||
* @public
|
||||
* @function attributes
|
||||
* @memberof GroupTypes.GroupType
|
||||
* @returns {v2.map(v2.string.type, v2.vc.type)}
|
||||
*/
|
||||
this.attributes = function() {
|
||||
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue