| Package | lc.procmgmt.ui.task |
| Class | public class ToDoModel |
| Inheritance | ToDoModel NavigationSupervisorModel PresentationModel EventDispatcher Object |
| Language Version: | ActionScript 3.0 |
| Product Version: | Adobe Digital Enterprise Platform Experience Services - Document Services ES2 |
| Runtime Versions: | AIR 1.0, Flash Player 9, Flash Player 10 |
ToDoModel class provides the model implementation for the
the ToDo component.
Related API Elements
| Property | Defined By | ||
|---|---|---|---|
![]() | constructor : Object
A reference to the class object or constructor function for a given object instance. | Object | |
| defaultQueueSize : int
The number of tasks that exist in the user's default queue. | ToDoModel | ||
| iconSource : Class
The icon associated with the CSS style name ToDo. | ToDoModel | ||
| listData : AggregatingCollection
A collection of QueueEntryData objects and a
SearchTemplateDescriptors component. | ToDoModel | ||
| queuesManager : QueuesManager
The collection of different queues, which is represented by a Queues object,
that the user has access to. | ToDoModel | ||
| selectedListItem : Object
The selected entry from the listData property. | ToDoModel | ||
| session : SessionMap [override]
A SessionMap object that stores infomation relating to the server session. | ToDoModel | ||
![]() | state : String [read-only]
The name of the state the current view is in. | PresentationModel | |
| toDoSelectorModel : lc.procmgmt.ui.task:ToDoSelectorModel | ToDoModel | ||
| Method | Defined By | ||
|---|---|---|---|
Constructor. | ToDoModel | ||
![]() | addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Registers an event listener object with an EventDispatcher object so that the listener
receives notification of an event. | EventDispatcher | |
![]() | bindProperty(destination:Object, destinationProperty:String, source:Object, sourceChain:Object, commitOnly:Boolean = false):ChangeWatcher
Binds a public property on the destination object from a property or
property chain on the source object. | PresentationModel | |
![]() |
Dispatches an event into the event flow. | EventDispatcher | |
![]() |
Returns the corresponding cascading style sheet (CSS) property to use based on the specified parameters. | PresentationModel | |
![]() |
Checks whether the EventDispatcher object has any listeners registered for a specific type
of event. | EventDispatcher | |
![]() |
Indicates whether an object has a specified property defined. | Object | |
![]() |
Initializes the presentation model after the view bindings
are processed to prevent view bindings from overriding the initial model state. | PresentationModel | |
![]() |
Indicates whether an instance of the Object class is in the prototype chain of the object specified
as the parameter. | Object | |
![]() |
Indicates whether the specified property exists and is enumerable. | Object | |
Refreshes the state of the container. | ToDoModel | ||
![]() |
Removes a listener from the EventDispatcher object. | EventDispatcher | |
Setting the selected task causes the QueueEntryData object that
contains the selected task to have its details property set to true, and
requests the QueueEntryData object to change to the selected
task. | ToDoModel | ||
![]() |
Sets the availability of a dynamic property for loop operations. | Object | |
![]() |
Returns the string representation of this object, formatted according to locale-specific conventions. | Object | |
![]() |
Returns the string representation of the specified object. | Object | |
![]() |
Returns the primitive value of the specified object. | Object | |
![]() |
Checks whether an event listener is registered with this EventDispatcher object or any of
its ancestors for the specified event type. | EventDispatcher | |
| Constant | Defined By | ||
|---|---|---|---|
| STATE_INITIAL : String = "initialState" [static]
A special value that specifies that the model is set to the initial state when created. | ToDoModel | ||
defaultQueueSize | property |
defaultQueueSize:int| Language Version: | ActionScript 3.0 |
| Product Version: | Adobe Digital Enterprise Platform Experience Services - Document Services ES2 |
| Runtime Versions: | AIR 1.0, Flash Player 9, Flash Player 10 |
The number of tasks that exist in the user's default queue.
This property can be used as the source for data binding. When this property is modified, it dispatches the propertyChange event.
Implementation
public function get defaultQueueSize():int public function set defaultQueueSize(value:int):voidiconSource | property |
iconSource:Class| Language Version: | ActionScript 3.0 |
| Product Version: | Adobe Digital Enterprise Platform Experience Services - Document Services ES2 |
| Runtime Versions: | AIR 1.0, Flash Player 9, Flash Player 10 |
The icon associated with the CSS style name ToDo.
This property can be used as the source for data binding. When this property is modified, it dispatches the propertyChange event.
Implementation
public function get iconSource():Class public function set iconSource(value:Class):voidlistData | property |
listData:AggregatingCollection| Language Version: | ActionScript 3.0 |
| Product Version: | Adobe Digital Enterprise Platform Experience Services - Document Services ES2 |
| Runtime Versions: | AIR 1.0, Flash Player 9, Flash Player 10 |
A collection of QueueEntryData objects and a
SearchTemplateDescriptors component.
The collection of QueueEntryData objects contain
the default queues, user queues, and group queues that a user has access to.
This property can be used as the source for data binding. When this property is modified, it dispatches the propertyChange event.
Implementation
public function get listData():AggregatingCollection public function set listData(value:AggregatingCollection):voidqueuesManager | property |
queuesManager:QueuesManager| Language Version: | ActionScript 3.0 |
| Product Version: | Adobe Digital Enterprise Platform Experience Services - Document Services ES2 |
| Runtime Versions: | AIR 1.0, Flash Player 9, Flash Player 10 |
The collection of different queues, which is represented by a Queues object,
that the user has access to.
This property can be used as the source for data binding. When this property is modified, it dispatches the propertyChange event.
Implementation
public function get queuesManager():QueuesManager public function set queuesManager(value:QueuesManager):voidRelated API Elements
selectedListItem | property |
selectedListItem:Object| Language Version: | ActionScript 3.0 |
| Product Version: | Adobe Digital Enterprise Platform Experience Services - Document Services ES2 |
| Runtime Versions: | AIR 1.0, Flash Player 9, Flash Player 10 |
The selected entry from the listData property.
The default behavior for the model is to identify the user's default queue when it is
first created. The model also uses this property to select the correct queue
if a Task object is accessed directly.
This property can be used as the source for data binding. When this property is modified, it dispatches the propertyChange event.
Implementation
public function get selectedListItem():Object public function set selectedListItem(value:Object):voidsession | property |
session:SessionMap[override] | Language Version: | ActionScript 3.0 |
| Product Version: | Adobe Digital Enterprise Platform Experience Services - Document Services ES2 |
| Runtime Versions: | AIR 1.0, Flash Player 9, Flash Player 10 |
A SessionMap object that stores infomation relating to the server session.
This property can be used as the source for data binding. When this property is modified, it dispatches the propertyChange event.
Implementation
override public function get session():SessionMap override public function set session(value:SessionMap):voidtoDoSelectorModel | property |
toDoSelectorModel:lc.procmgmt.ui.task:ToDoSelectorModelImplementation
public function get toDoSelectorModel():lc.procmgmt.ui.task:ToDoSelectorModel public function set toDoSelectorModel(value:lc.procmgmt.ui.task:ToDoSelectorModel):voidToDoModel | () | Constructor |
public function ToDoModel()| Language Version: | ActionScript 3.0 |
| Product Version: | Adobe Digital Enterprise Platform Experience Services - Document Services ES2 |
| Runtime Versions: | AIR 1.0, Flash Player 9, Flash Player 10 |
Constructor.
refresh | () | method |
public function refresh():void| Language Version: | ActionScript 3.0 |
| Product Version: | Adobe Digital Enterprise Platform Experience Services - Document Services ES2 |
| Runtime Versions: | AIR 1.0, Flash Player 9, Flash Player 10 |
Refreshes the state of the container. This method is useful to invoke on view components to refresh the display.
selectTask | () | method |
public function selectTask(task:lc.procmgmt.domain:Task):void| Language Version: | ActionScript 3.0 |
| Product Version: | Adobe Digital Enterprise Platform Experience Services - Document Services ES2 |
| Runtime Versions: | AIR 1.0, Flash Player 9, Flash Player 10 |
Setting the selected task causes the QueueEntryData object that
contains the selected task to have its details property set to true, and
requests the QueueEntryData object to change to the selected
task.
Parameters
task:lc.procmgmt.domain:Task — Specifies the task to be selected.
|
STATE_INITIAL | Constant |
public static const STATE_INITIAL:String = "initialState"| Language Version: | ActionScript 3.0 |
| Product Version: | Adobe Digital Enterprise Platform Experience Services - Document Services ES2 |
| Runtime Versions: | AIR 1.0, Flash Player 9, Flash Player 10 |
A special value that specifies that the model is set to the initial state when created.
Wed Nov 21 2018, 06:34 AM -08:00
Hide Inherited Public Properties
Show Inherited Public Properties