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

54
docfiles/models/model.js Normal file
View file

@ -0,0 +1,54 @@
/**
* Нода дерева.<br>
* Представляет интефрейс для доступа к данным устройства.<br>
* Позволяет получить список компонентов модели<br>
*
* @class Model
* @memberof Models
*/
function Model() {
/**
*
* @public
* @function address
* @returns v2.address
* @memberof Models.Model
*/
this.address = function() {
};
/**
*
* @public
* @function groups
* @returns tools.promise
* @memberof Models.Model
*/
this.groups = function() {
};
/**
*
* @public
* @function touch
* @returns tools.promise
* @memberof Models.Model
*/
this.touch = function() {
};
/**
*
* @public
* @function debug
* @param v2.address destination
* @param v2.address variables
* @memberof Models.Model
*/
this.debug = function(destination, variables) {
};
}