Package | lc.procmgmt.ui.tracking |
Class | public class TrackingModel |
Inheritance | TrackingModel 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 |
TrackingModel
class provides support for the
Tracking
component.
The TrackingModel
class loads a list of processes, represented by
Process
objects, which the user initiated or participated in,
into the contents of the listData
property. The list data also contains a
SearchTemplateDescriptors
object so that the user can
search for tasks from within the tracking area.
If the user selects a process from the list of processes, the set of
associated ProcessInstances
objects are displayed in the content
area of the Tracking
component.
Related API Elements
Property | Defined By | ||
---|---|---|---|
constructor : Object
A reference to the class object or constructor function for a given object instance. | Object | ||
data : Object
Maps the data to the selectedProcess property. | TrackingModel | ||
errorMessage : String
The error message after an event occurs. | TrackingModel | ||
iconSource : Class
The location of the the icon image for the component. | TrackingModel | ||
listData : AggregatingCollection
A collection of Process objects and a
SearchTemplateDescriptors object. | TrackingModel | ||
selectedProcess : Process
After all processes are loaded, the selectedProcess property is set to the first
Process object stored in the listData property. | TrackingModel | ||
session : SessionMap
A SessionMap object that stores information relating to the server session. | PresentationModel | ||
state : String [read-only]
The name of the state the current view is in. | PresentationModel | ||
trackingSelectorModel : lc.procmgmt.ui.tracking:TrackingSelectorModel
The model for the TrackingSelector object. | TrackingModel |
Method | Defined By | ||
---|---|---|---|
Constructor. | TrackingModel | ||
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 | ||
[override]
Initializes the presentation model for the Tracking component and displays the processes
the user participated in by process name. | TrackingModel | ||
Indicates whether an instance of the Object class is in the prototype chain of the object specified
as the parameter. | Object | ||
Loads the processes that a user participated in or started. | TrackingModel | ||
Indicates whether the specified property exists and is enumerable. | Object | ||
Refreshes the state of the container. | TrackingModel | ||
Removes a listener from the EventDispatcher object. | EventDispatcher | ||
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_ERROR : String = "errorState" [static]
A special value that represents that an error occurred. | TrackingModel |
data | property |
data: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 |
Maps the data to the selectedProcess
property.
Implementation
public function get data():Object
public function set data(value:Object):void
errorMessage | property |
errorMessage:String
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 error message after an event occurs.
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 errorMessage():String
public function set errorMessage(value:String):void
iconSource | 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 location of the the icon image for the component.
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):void
listData | 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 Process
objects and a
SearchTemplateDescriptors
object.
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):void
selectedProcess | property |
selectedProcess:Process
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 |
After all processes are loaded, the selectedProcess
property is set to the first
Process
object stored in the listData
property.
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 selectedProcess():Process
public function set selectedProcess(value:Process):void
trackingSelectorModel | property |
trackingSelectorModel:lc.procmgmt.ui.tracking:TrackingSelectorModel
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 model for the TrackingSelector
object.
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 trackingSelectorModel():lc.procmgmt.ui.tracking:TrackingSelectorModel
public function set trackingSelectorModel(value:lc.procmgmt.ui.tracking:TrackingSelectorModel):void
TrackingModel | () | Constructor |
public function TrackingModel()
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.
initialize | () | method |
override public function initialize():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 |
Initializes the presentation model for the Tracking
component and displays the processes
the user participated in by process name.
loadProcesses | () | method |
public function loadProcesses():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 |
Loads the processes that a user participated in or started.
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 typically invoked by the view when it is reentered and re-shown.
STATE_ERROR | Constant |
public static const STATE_ERROR:String = "errorState"
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 represents that an error occurred.
Wed Nov 21 2018, 06:34 AM -08:00