ConditionEvent

Kind of class: public class
Package:
Inherits from:
  • Event
Dispatched by:
Classpath: org.asaplibrary.util.actionqueue.ConditionEvent
File last modified: Wednesday, 11 May 2011, 18:54:59
Event objects that are sent by ConditionManager. Subscribe to type _EVENT.

Summary

Constructor
Constants
  • _EVENT : String
    • Event type.
  • CONDITION_MET : String
    • Event subtype sent when the condition has been met.
Instance properties
Instance methods
  • toString () : String
  • clone () : Event
    • Creates a copy of an existing ConditionEvent.

Constructor

ConditionEvent

function ConditionEvent(inSubtype:String, inCondition:Condition)

Creates a new ConditionEvent.

Parameters
inSubtype :CONDITION_MET
inCondition:Condition that is met

Constants

CONDITION_MET

static const CONDITION_MET:String = "conditionMet"

Event subtype sent when the condition has been met.

_EVENT

static const _EVENT:String = "conditionEvent"

Event type.

Instance properties

condition

condition:Condition(read,write)

subtype

subtype:String(read,write)

Instance methods

clone

override function clone() : Event

Creates a copy of an existing ConditionEvent.

Overrides
  • Event.clone

toString

override function toString() : String
Overrides
  • Event.toString