Packagesekati.collections
Classpublic class XMLListIterator
ImplementsIIterator, IPointerIterator

XMLList based Iterator



Public Properties
 PropertyDefined by
  pointer : int
The interative pointer index.
XMLListIterator
Protected Properties
 PropertyDefined by
  _list : XMLList
XMLListIterator
  _pointer : int
XMLListIterator
Public Methods
 MethodDefined by
  
XMLListIterator(sourceXMLList:XMLList)
XMLListIterator Constructor
XMLListIterator
  
hasNext():Boolean
Is there another item in the collection to move to.
XMLListIterator
  
next():Object
Move to the next item and return it.
XMLListIterator
  
peek():Object
Returns the next item in the collection without moving to it.
XMLListIterator
Property detail
_listproperty
protected var _list:XMLList
_pointerproperty 
protected var _pointer:int
pointerproperty 
pointer:int  [read-write]

The interative pointer index.

Implementation
    public function get pointer():int
    public function set pointer(value:int):void
Constructor detail
XMLListIterator()constructor
public function XMLListIterator(sourceXMLList:XMLList)

XMLListIterator Constructor

Parameters
sourceXMLList:XMLList
Method detail
hasNext()method
public function hasNext():Boolean

Is there another item in the collection to move to.

Returns
Boolean
next()method 
public function next():Object

Move to the next item and return it.

Returns
Object
peek()method 
public function peek():Object

Returns the next item in the collection without moving to it.

Returns
Object