EventCallbackAdapter

Kind of class:public class
Package:com.bourre.events
Inherits from:none
Implements:
Version:1.0
Author:Francis Bourre
Classpath:com.bourre.events.EventCallbackAdapter
File last modified:Monday, 24 November 2008, 11:36:53

Summary


Constructor
  • EventCallbackAdapter (argumentCallbackFactoryClass:Class = null, callbackTarget:Object = null, rest)
Instance methods
Event handlers
  • onTick (e:Event = null) : void
    • Method called by the {VISDOC_CODE_BLOCK_5} for each

Constructor

EventCallbackAdapter

public function EventCallbackAdapter (
argumentCallbackFactoryClass:Class = null, callbackTarget:Object = null, rest)

Instance methods

addArguments

public function addArguments (
rest) : void

addArgumentsArray

public function addArgumentsArray (
a:Array) : void

execute

public function execute (
event:Event = null) : void

getArgumentCallbackFactoryClass

public function getArgumentCallbackFactoryClass (
) : Class

getArgumentCallbackFactoryInstance

public function getArgumentCallbackFactoryInstance (

getArguments

public function getArguments (
) : Array

getCallbackTarget

public function getCallbackTarget (
) : Object

getCallbackTargetCaller

public function getCallbackTargetCaller (
event:Event) : Delegate

handleEvent

public function handleEvent (
e:Event) : void

setArgumentCallbackFactoryClass

public function setArgumentCallbackFactoryClass (
argumentCallbackFactoryClass:Class) : void

setArguments

public function setArguments (
rest) : void

setArgumentsArray

public function setArgumentsArray (
a:Array) : void

setCallbackTarget

public function setCallbackTarget (
callbackTarget:Object, typeList) : void

toString

public function toString (
) : String

Returns the string representation of this instance.
Returns:
  • the string representation of this instance

Event handlers

onTick

public function onTick (
e:Event = null) : void

Method called by the {VISDOC_CODE_BLOCK_5} for each
step of time according to its time slicing approach.

The {VISDOC_CODE_BLOCK_6} method is very similar to the
old {VISDOC_CODE_BLOCK_7} method, but doesn't specifically
occurs when entering in a new frame of a frame-based animation.
The tick could be the result of a {VISDOC_CODE_BLOCK_8} call,
or a change in the timecode of a video.

#
Parameters:
e:
event dispatched by the beacon object
#
Specified by: