Language Version : | ActionScript 3.0 |
Product Version : | FlexJS 0.0 |
Runtime Versions : | Flash Player 10.2, AIR 2.6 |
The GenericBinding class is the data-binding class that applies
changes to properties of source objects to a property of the
destination object.
protected var destination:Object
Language Version : | ActionScript 3.0 |
Product Version : | FlexJS 0.0 |
Runtime Versions : | Flash Player 10.2, AIR 2.6 |
The object whose property will be
changed by the binding expression.
public var destinationData:Object
Language Version : | ActionScript 3.0 |
Product Version : | FlexJS 0.0 |
Runtime Versions : | Flash Player 10.2, AIR 2.6 |
The string or array of strings that describe
the chain of properties to access to assign
the source property's value to the destination
public var destinationFunction:Function
Language Version : | ActionScript 3.0 |
Product Version : | FlexJS 0.0 |
Runtime Versions : | Flash Player 10.2, AIR 2.6 |
The function used to assign
the source property's value to the destination
if the destination is not a public property
protected var document:Object
Language Version : | ActionScript 3.0 |
Product Version : | FlexJS 0.0 |
Runtime Versions : | Flash Player 10.2, AIR 2.6 |
The mxml document for the
binding expression. If you bind to
{someid.someproperty} then there must
be a tag in the mxml document with
the id "someid".
public var source:Object
Language Version : | ActionScript 3.0 |
Product Version : | FlexJS 0.0 |
Runtime Versions : | Flash Player 10.2, AIR 2.6 |
The string or array of strings that describe
the chain of properties to access to get to
the source property's value.
strand:IStrand
[write-only]
Language Version : | ActionScript 3.0 |
Product Version : | FlexJS 0.0 |
Runtime Versions : | Flash Player 10.2, AIR 2.6 |
The host component for this bead.
Implementation public function set strand(value:IStrand):void
public function GenericBinding()
Language Version : | ActionScript 3.0 |
Product Version : | FlexJS 0.0 |
Runtime Versions : | Flash Player 10.2, AIR 2.6 |
Constructor.
public function setDocument(document:Object, id:String = null):void
Language Version : | ActionScript 3.0 |
Product Version : | FlexJS 0.0 |
Runtime Versions : | Flash Player 10.2, AIR 2.6 |
This method is called to notify an instance of what MXML document
it belongs to, if any, and what its assigned id is in that
document, if any.
Parameters
| document:Object — The MXML document that hosts this component.
|
|
| id:String (default = null ) — The optional id of the component in the document.
|
public function valueChanged(value:Object):void
Language Version : | ActionScript 3.0 |
Product Version : | FlexJS 0.0 |
Runtime Versions : | Flash Player 10.2, AIR 2.6 |
The method that gets called by the watcher when the value
may have changed.
Parameters
| value:Object — The new value.
|
Fri Apr 18 2014, 11:02 PM -07:00