Packagesekati.collections
Classpublic class DisplayListCollection
ImplementsICollection
SubclassesDisplayListQueue, DisplayListStack

DisplayList based Collection



Public Properties
 PropertyDefined by
  container : DisplayObjectContainer
[read-only] Return the collection container data
DisplayListCollection
  count : uint
[read-only] How many items exist within the collection.
DisplayListCollection
  isEmpty : Boolean
[read-only] Whether or not this collection is empty.
DisplayListCollection
Public Methods
 MethodDefined by
  
DisplayListCollection(container:DisplayObjectContainer)
DisplayListCollection Constructor
DisplayListCollection
  
clear():void
Removes all items from the collection.
DisplayListCollection
  
The iterator used to handle going through the collection.
DisplayListCollection
Property detail
containerproperty
container:DisplayObjectContainer  [read-only]

Return the collection container data

Implementation
    public function get container():DisplayObjectContainer
countproperty 
count:uint  [read-only]

How many items exist within the collection.

Implementation
    public function get count():uint
isEmptyproperty 
isEmpty:Boolean  [read-only]

Whether or not this collection is empty.

Implementation
    public function get isEmpty():Boolean
Constructor detail
DisplayListCollection()constructor
public function DisplayListCollection(container:DisplayObjectContainer)

DisplayListCollection Constructor

Parameters
container:DisplayObjectContainer — DisplayObjectContainer used in collection.
Method detail
clear()method
public function clear():void

Removes all items from the collection.

getIterator()method 
public function getIterator():IIterator

The iterator used to handle going through the collection.

Returns
IIterator