Packageorg.apache.flex.core
Classpublic class BeadViewBase
InheritanceBeadViewBase Inheritance EventDispatcher Inheritance flash.events.EventDispatcher
Implements IBeadView
Subclasses AlertView, CheckBoxView, CloseButtonView, ComboBoxView, ContainerView, CSSButtonView, CSSImageAndTextButtonView, CSSTextButtonView, DateChooserView, DateFieldView, DatePickerView, DecrementButtonView, DownArrowButtonView, DropDownListView, GoogleMapView, HRuleView, HScrollBarThumbView, HScrollBarTrackView, ImageAndTextButtonView, ImageButtonView, ImageView, IncrementButtonView, LeftArrowButtonView, NumericStepperView, RadioButtonView, RangeStepperView, RightArrowButtonView, SimpleAlertView, SliderThumbView, SliderTrackView, SliderView, SpinnerView, TextButtonView, UpArrowButtonView, VRuleView, VScrollBarThumbView, VScrollBarTrackView

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

The BeadViewBase class is the base class for most view beads.



Public Properties
 PropertyDefined By
  host : IUIBase
[read-only] The host component.
BeadViewBase
  _strand : IStrand
The strand.
BeadViewBase
  strand : IStrand
[write-only] Get the strand for this bead Override this for whatever else you need to do when being hooked to the Strand The host component for this bead.
BeadViewBase
Public Methods
 MethodDefined By
  
Constructor.
BeadViewBase
Property Detail
_strandproperty
public var _strand:IStrand

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

The strand. Do not modify except via the strand setter. For reading only. Because Object.defineProperties in JS doesn't allow you to just override the setter (you have to override the getter as well even if it just calls the super getter) it is more efficient to expose this variable than have all of the layers of simple overrides.

hostproperty 
host:IUIBase  [read-only]

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

The host component.


Implementation
    public function get host():IUIBase
strandproperty 
strand:IStrand  [write-only]

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

Get the strand for this bead Override this for whatever else you need to do when being hooked to the Strand

The host component for this bead.


Implementation
    public function set strand(value:IStrand):void
Constructor Detail
BeadViewBase()Constructor
public function BeadViewBase()

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

Constructor.