home *** CD-ROM | disk | FTP | other *** search
/ Mobiclic 136 / MOBICLIC136.ISO / pc / DATA / HOTE / libs / amfphp / amfphp.swf / scripts / __Packages / mx / remoting / RecordSetIterator.as < prev    next >
Text File  |  2011-07-20  |  366b  |  18 lines

  1. class mx.remoting.RecordSetIterator
  2. {
  3.    static var version = "1.2.0.124";
  4.    function RecordSetIterator(rec)
  5.    {
  6.       this._recordSet = rec;
  7.       this._cursor = 0;
  8.    }
  9.    function hasNext()
  10.    {
  11.       return this._cursor < this._recordSet.getLength();
  12.    }
  13.    function next()
  14.    {
  15.       return this._recordSet.getItemAt(this._cursor++);
  16.    }
  17. }
  18.