Packagesystem.events
Classpublic class ArrayEvent
InheritanceArrayEvent Inheritance BasicEvent Inheritance flash.events.Event

The ArrayEvent to dispatch an event who contains an Array object.

Example :

     import system.events.ArrayEvent ;
     var e:ArrayEvent = new ArrayEvent("change", [2, 3, 4]) ;
     trace( e.array ) ; // 2,3,4
     



Public Properties
 PropertyDefined By
  array : Array
Determinates the Array reference of this custom event.
ArrayEvent
 Inheritedcontext : *
Determinates the optional context of this event.
BasicEvent
 Inheritedtarget : Object
[override] Indicates the custom event target.
BasicEvent
 InheritedtimeStamp : uint
[read-only] Indicates the timestamp of the event.
BasicEvent
 Inheritedtype : String
[override] Returns the type of event.
BasicEvent
Public Methods
 MethodDefined By
  
ArrayEvent(type:String, ar:Array = null, target:Object = null, context:* = null, bubbles:Boolean = false, cancelable:Boolean = false, time:Number = 0)
Creates a new ArrayEvent instance.
ArrayEvent
  
clone():Event
[override] Returns the shallow copy of this event.
ArrayEvent
 Inherited
dispatch(channel:String = null):void
Dispatch the event with the global event flow.
BasicEvent
 Inherited
toString():String
[override] Returns the string representation of this event.
BasicEvent
Protected Methods
 MethodDefined By
 Inherited
setTimeStamp(time:uint = 0):void
Sets the timestamp of the event (used this method only in internal in the Event class).
BasicEvent
Property Detail
arrayproperty
array:Array

Determinates the Array reference of this custom event.


Implementation
    public function get array():Array
    public function set array(value:Array):void
Constructor Detail
ArrayEvent()Constructor
public function ArrayEvent(type:String, ar:Array = null, target:Object = null, context:* = null, bubbles:Boolean = false, cancelable:Boolean = false, time:Number = 0)

Creates a new ArrayEvent instance.

Parameters
type:String — the string type of the instance.
 
ar:Array (default = null) — the array object of this event.
 
target:Object (default = null) — the target of the event.
 
context:* (default = null) — the optional context object of the event.
 
bubbles:Boolean (default = false) — indicates if the event is a bubbling event.
 
cancelable:Boolean (default = false) — indicates if the event is a cancelable event.
 
time:Number (default = 0) — this optional parameter is used in the eden deserialization to copy the timestamp value of this event.
Method Detail
clone()method
override public function clone():Event

Returns the shallow copy of this event.

Returns
Event — the shallow copy of this event.