Packageorg.apache.flex.core
Interfacepublic interface IStatesObject extends IEventDispatcher, flash.events.IEventDispatcher
Implementors ContainerBase

Language Version : ActionScript 3.0
Product Version : FlexJS 0.0
Runtime Versions : Flash Player 10.2, AIR 2.6

The IStatesObject interface is the interface for an object that supports states.



Public Properties
 PropertyDefined By
  currentState : String
The current state name
IStatesObject
  states : Array
[read-only] The array of view states.
IStatesObject
  transitions : Array
[read-only] The array of view state transitions.
IStatesObject
Property Detail
currentStateproperty
currentState:String

Language Version : ActionScript 3.0
Product Version : FlexJS 0.0
Runtime Versions : Flash Player 10.2, AIR 2.6

The current state name


Implementation
    public function get currentState():String
    public function set currentState(value:String):void
statesproperty 
states:Array  [read-only]

Language Version : ActionScript 3.0
Product Version : FlexJS 0.0
Runtime Versions : Flash Player 10.2, AIR 2.6

The array of view states. These should be instances of org.apache.flex.states.State.


Implementation
    public function get states():Array
transitionsproperty 
transitions:Array  [read-only]

Language Version : ActionScript 3.0
Product Version : FlexJS 0.0
Runtime Versions : Flash Player 10.2, AIR 2.6

The array of view state transitions. These should be instances of org.apache.flex.states.Transition.


Implementation
    public function get transitions():Array