add show list methods

This commit is contained in:
Aleksey Chichenkov 2018-09-19 13:25:01 +03:00
parent 3478e04a63
commit bbb8ca5fdf
13 changed files with 929 additions and 95 deletions

View file

@ -0,0 +1,50 @@
/**
*
* @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() {
};
}