Packageorg.spicefactory.parsley.flex.tag.builder
Classpublic class ContextBuilderSyncEvent
InheritanceContextBuilderSyncEvent Inheritance flash.events.Event

Event that fires when an MXML ContextBuilder tag wants to synchronize with its potential parent. This Event deals with low level framework internals and should not be used by application code.



Public Properties
 PropertyDefined By
  callback : Function
[read-only] The callback to be invoked by parent ContextBuilders in case child Context creation must be deferred.
ContextBuilderSyncEvent
  deferred : Boolean
Indicates whether child Context creation must be deferred until the parent ContextBuilder invokes the specified callback.
ContextBuilderSyncEvent
Public Methods
 MethodDefined By
  
ContextBuilderSyncEvent(callback:Function)
Creates a new event instance.
ContextBuilderSyncEvent
Public Constants
 ConstantDefined By
  SYNC_BUILDER : String = syncBuilder
[static] Constant for the type of bubbling event fired when an MXML ContextBuilder tag wants to synchronize with its potential parent.
ContextBuilderSyncEvent
Property Detail
callbackproperty
callback:Function  [read-only]

The callback to be invoked by parent ContextBuilders in case child Context creation must be deferred.


Implementation
    public function get callback():Function
deferredproperty 
deferred:Boolean

Indicates whether child Context creation must be deferred until the parent ContextBuilder invokes the specified callback.


Implementation
    public function get deferred():Boolean
    public function set deferred(value:Boolean):void
Constructor Detail
ContextBuilderSyncEvent()Constructor
public function ContextBuilderSyncEvent(callback:Function)

Creates a new event instance.

Parameters
callback:Function — a function a parent ContextBuilder invokes in case child creation must be deferred
Constant Detail
SYNC_BUILDERConstant
public static const SYNC_BUILDER:String = syncBuilder

Constant for the type of bubbling event fired when an MXML ContextBuilder tag wants to synchronize with its potential parent.