0
1
Fork 0
hedera-web-mindshore/js/db/simple-iterator.js

75 lines
1008 B
JavaScript
Raw Normal View History

2016-09-26 09:28:47 +00:00
var Iterator = require ('./iterator');
var Model = require ('./model');
/**
* A light iterator for models.
**/
2016-09-26 09:28:47 +00:00
module.exports = new Class
({
Extends: Vn.Object
2016-09-26 09:28:47 +00:00
,Implements: Iterator
,Properties:
{
/**
* The model associated to this form.
**/
model:
{
2016-09-26 09:28:47 +00:00
type: Model
,set: function (x)
{
this._model = x;
}
,get: function ()
{
return this._model;
}
},
/**
* The row where the form positioned, has -1 if the row is unselected.
**/
row:
{
type: Number
,set: function (x)
{
this._row = x;
}
,get: function ()
{
return this._row;
}
},
/**
* The number of rows in the form.
**/
numRows:
{
type: Number
,get: function ()
{
if (this._model)
return this._model.numRows;
return 0;
}
},
/**
* Checks if the form data is ready.
**/
ready:
{
type: Boolean
,get: function ()
{
if (this._model)
return this._model.ready;
return false;
}
}
}
});