Pakket | lc.procmgmt.ui.task |
Klasse | public class TaskInfoModel |
Overerving | TaskInfoModel PresentationModel EventDispatcher Object |
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Runtimeversies: | AIR (unsupported), Flash Player 9, Flash Player 10 |
TaskInfoModel
class provides support for
views that are interested in the Task
object's data,
such as, the TaskInfo
component. To obtain
information about a Task
object, this class binds to the
Task
object's properties.
The status value of the task is always a numeric value; however,
the TaskInfoModel
object provides a localization key string
of the Task
object's status value as a property called
statusKey
. This key can be used as the key for a
resource bundle lookup.
For information on using this component to customize Workspace, see Adobe Digital Enterprise Platform Document Services - Workspace 10.0 User Interface .
Verwante API-elementen
Eigenschap | Gedefinieerd door | ||
---|---|---|---|
constructor : Object
Verwijzing naar het klasseobject of de constructorfunctie van een bepaalde objectinstantie. | Object | ||
creationTime : Date [alleen-lezen]
The date and time the task was created. | TaskInfoModel | ||
deadline : Date [alleen-lezen]
The date the task is due. | TaskInfoModel | ||
description : String [alleen-lezen]
The description text associated with the task. | TaskInfoModel | ||
instructions : String [alleen-lezen]
The set of instructions to complete the task. | TaskInfoModel | ||
session : SessionMap
A SessionMap object that stores information relating to the server session. | PresentationModel | ||
state : String [alleen-lezen]
The name of the state the current view is in. | PresentationModel | ||
status : Number [alleen-lezen]
The numeric value representing the status of a task. | TaskInfoModel | ||
statusKey : String [alleen-lezen]
The localization key that identifies the task's status
value as a localized string. | TaskInfoModel | ||
stepName : String [alleen-lezen]
The name of the operation in a process diagram in which the task participates. | TaskInfoModel | ||
task : lc.procmgmt.domain:Task [alleen-lezen]
The Task object that all properties of this model
are bound to. | TaskInfoModel | ||
taskId : String [alleen-lezen]
The unique identifier of the task. | TaskInfoModel | ||
updateTime : Date [alleen-lezen]
The last time the task was updated. | TaskInfoModel |
Methode | Gedefinieerd door | ||
---|---|---|---|
Constructor. | TaskInfoModel | ||
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Registreert een gebeurtenislistenerobject bij een object EventDispatcher, zodat de listener een melding van een gebeurtenis ontvangt. | 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 | ||
Verzendt een gebeurtenis naar de gebeurtenisstroom. | EventDispatcher | ||
Returns the corresponding cascading style sheet (CSS) property to use based on the specified parameters. | PresentationModel | ||
Controleert of het object EventDispatcher listeners heeft geregistreerd voor een specifiek type gebeurtenis. | EventDispatcher | ||
Geeft aan of voor een object een opgegeven eigenschap is gedefinieerd. | Object | ||
Initializes the presentation model after the view bindings
are processed to prevent view bindings from overriding the initial model state. | PresentationModel | ||
Geeft aan of een instantie van de klasse Object zich in de prototypeketen van het object bevindt dat als parameter is opgegeven. | Object | ||
Geeft aan of de opgegeven eigenschap bestaat en kan worden opgesomd. | Object | ||
Verwijdert een listener uit het object EventDispatcher. | EventDispatcher | ||
Reinitializes the model's task property to a value of null
and the statusKey property to an empty string. | TaskInfoModel | ||
Stelt de beschikbaarheid van een dynamische eigenschap voor lusbewerkingen in. | Object | ||
Geeft de tekenreeksweergave van dit object weer, geformatteerd volgens de locatiespecifieke conventies. | Object | ||
Retourneert een tekenreeksrepresentatie van het opgegeven object. | Object | ||
Retourneert de primitieve waarde van het opgegeven object. | Object | ||
Controleert of een gebeurtenislistener is geregistreerd bij dit object EventDispatcher of een van de voorouders voor het opgegeven type gebeurtenis. | EventDispatcher |
Constante | Gedefinieerd door | ||
---|---|---|---|
STATE_INITIAL : String = "initialState" [statisch]
The model is set to this state when it is created. | TaskInfoModel |
creationTime | eigenschap |
creationTime:Date
[alleen-lezen] Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Runtimeversies: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The date and time the task was created.
Deze eigenschap kan als de bron voor gegevensbinding worden gebruikt. Wanneer deze eigenschap wordt gewijzigd, wordt de gebeurtenis propertyChange
verzonden.
Implementatie
public function get creationTime():Date
deadline | eigenschap |
deadline:Date
[alleen-lezen] Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Runtimeversies: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The date the task is due.
Deze eigenschap kan als de bron voor gegevensbinding worden gebruikt. Wanneer deze eigenschap wordt gewijzigd, wordt de gebeurtenis propertyChange
verzonden.
Implementatie
public function get deadline():Date
description | eigenschap |
description:String
[alleen-lezen] Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Runtimeversies: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The description text associated with the task.
Deze eigenschap kan als de bron voor gegevensbinding worden gebruikt. Wanneer deze eigenschap wordt gewijzigd, wordt de gebeurtenis propertyChange
verzonden.
Implementatie
public function get description():String
instructions | eigenschap |
instructions:String
[alleen-lezen] Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Runtimeversies: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The set of instructions to complete the task.
Deze eigenschap kan als de bron voor gegevensbinding worden gebruikt. Wanneer deze eigenschap wordt gewijzigd, wordt de gebeurtenis propertyChange
verzonden.
Implementatie
public function get instructions():String
status | eigenschap |
status:Number
[alleen-lezen] Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Runtimeversies: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The numeric value representing the status of a task.
The status value typically is not used in the presentation layers.
The statusKey
property is the value usually used by the
presentation layers.
Deze eigenschap kan als de bron voor gegevensbinding worden gebruikt. Wanneer deze eigenschap wordt gewijzigd, wordt de gebeurtenis propertyChange
verzonden.
Implementatie
public function get status():Number
Verwante API-elementen
statusKey | eigenschap |
statusKey:String
[alleen-lezen] Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Runtimeversies: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The localization key that identifies the task's status
value as a localized string. The valid values are found in the
lc.TaskConstants
class.
Deze eigenschap kan als de bron voor gegevensbinding worden gebruikt. Wanneer deze eigenschap wordt gewijzigd, wordt de gebeurtenis propertyChange
verzonden.
Implementatie
public function get statusKey():String
Verwante API-elementen
stepName | eigenschap |
stepName:String
[alleen-lezen] Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Runtimeversies: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The name of the operation in a process diagram in which the task participates.
Deze eigenschap kan als de bron voor gegevensbinding worden gebruikt. Wanneer deze eigenschap wordt gewijzigd, wordt de gebeurtenis propertyChange
verzonden.
Implementatie
public function get stepName():String
task | eigenschap |
task:lc.procmgmt.domain:Task
[alleen-lezen] Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Runtimeversies: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The Task
object that all properties of this model
are bound to.
Deze eigenschap kan als de bron voor gegevensbinding worden gebruikt. Wanneer deze eigenschap wordt gewijzigd, wordt de gebeurtenis propertyChange
verzonden.
Implementatie
public function get task():lc.procmgmt.domain:Task
taskId | eigenschap |
taskId:String
[alleen-lezen] Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Runtimeversies: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The unique identifier of the task.
Deze eigenschap kan als de bron voor gegevensbinding worden gebruikt. Wanneer deze eigenschap wordt gewijzigd, wordt de gebeurtenis propertyChange
verzonden.
Implementatie
public function get taskId():String
updateTime | eigenschap |
updateTime:Date
[alleen-lezen] Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Runtimeversies: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The last time the task was updated.
Deze eigenschap kan als de bron voor gegevensbinding worden gebruikt. Wanneer deze eigenschap wordt gewijzigd, wordt de gebeurtenis propertyChange
verzonden.
Implementatie
public function get updateTime():Date
TaskInfoModel | () | Constructor |
public function TaskInfoModel()
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Runtimeversies: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Constructor.
reset | () | methode |
public function reset():void
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Runtimeversies: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Reinitializes the model's task
property to a value of null
and the statusKey
property to an empty string.
STATE_INITIAL | Constante |
public static const STATE_INITIAL:String = "initialState"
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Runtimeversies: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The model is set to this state when it is created.
Wed Jun 13 2018, 11:42 AM Z