Package | weavejs.api.core |
Interface | public interface ILinkableCompositeObject extends ILinkableObject |
See also
Method | Defined By | ||
---|---|---|---|
getSessionState():Array
This gets the session state of this composite object. | ILinkableCompositeObject | ||
setSessionState(newState:Array, removeMissingDynamicObjects:Boolean):void
This sets the session state of this composite object. | ILinkableCompositeObject |
getSessionState | () | method |
public function getSessionState():Array
This gets the session state of this composite object.
ReturnsArray — An Array of DynamicState objects which compose the session state for this object.
|
See also
setSessionState | () | method |
public function setSessionState(newState:Array, removeMissingDynamicObjects:Boolean):void
This sets the session state of this composite object.
Parameters
newState:Array — An Array of child name Strings or DynamicState objects containing the new values and types for child ILinkableObjects.
| |
removeMissingDynamicObjects:Boolean — If true, this will remove any child objects that do not appear in the session state.
As a special case, a null session state will result in no change regardless of the removeMissingDynamicObjects value.
|
See also