Packagecom.vmware.widgets.controls.wizardclasses
Classpublic class WizardPageMediator
InheritanceWizardPageMediator Inheritance flash.events.EventDispatcher
Implements IWizardPageMediator

The base implementation of IWizardPageMediator. This class defines the properties needed for a Wizard PageInfo mediator, including data and pageInfo properties.



Public Properties
 PropertyDefined By
  pageInfo : PageInfo
The mediator's page info.
WizardPageMediator
  viewBindings : BindingSet
[read-only] Collection of bindings that will be reset when the view changes or is cleared.
WizardPageMediator
  viewListeners : EventListenerSet
[read-only] Collection of event listeners that will be reset when the view changes or is cleared.
WizardPageMediator
Public Methods
 MethodDefined By
  
activate():void
Called when the page is activated.
WizardPageMediator
  
deactivate():void
Called when the page is deactivated.
WizardPageMediator
  
dispose():void
Perform cleanup actions.
WizardPageMediator
Protected Methods
 MethodDefined By
  
changeState(state:String):void
Utility method to change the state of the pages's PageInfo to given state.
WizardPageMediator
Public Constants
 ConstantDefined By
  LOADING : String = loading
[static] 'Loading' constant to indicate that the page is busy since its loading its contents.
WizardPageMediator
  VALIDATING : String = validating
[static] 'Validating' constant to indicate that the page is busy because it is validating the inputs.
WizardPageMediator
Property Detail
pageInfoproperty
pageInfo:PageInfo

The mediator's page info.


Implementation
    public function get pageInfo():PageInfo
    public function set pageInfo(value:PageInfo):void
viewBindingsproperty 
viewBindings:BindingSet  [read-only]

Collection of bindings that will be reset when the view changes or is cleared.


Implementation
    public function get viewBindings():BindingSet
viewListenersproperty 
viewListeners:EventListenerSet  [read-only]

Collection of event listeners that will be reset when the view changes or is cleared.


Implementation
    public function get viewListeners():EventListenerSet
Method Detail
activate()method
public function activate():void

Called when the page is activated.

changeState()method 
protected function changeState(state:String):void

Utility method to change the state of the pages's PageInfo to given state.

Parameters

state:String

deactivate()method 
public function deactivate():void

Called when the page is deactivated.

dispose()method 
public function dispose():void

Perform cleanup actions. Method overrides should call super.dispose();

Constant Detail
LOADINGConstant
public static const LOADING:String = loading

'Loading' constant to indicate that the page is busy since its loading its contents.

VALIDATINGConstant 
public static const VALIDATING:String = validating

'Validating' constant to indicate that the page is busy because it is validating the inputs.