Package | lc.foundation.util |
Classe | public class CompositeMessage |
Héritage | CompositeMessage Message Object |
Version du langage: | ActionScript 3.0 |
Version du produit: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Versions du moteur d’exécution: | AIR (unsupported), Flash Player 9, Flash Player 10 |
CompositeMessage
class encapsulates a composite message.
A composite message is a message that has nested messages. The general format
is [top-level identifer]/[next level identifier]/.../[most specific identifer]
.
For example, the message identifier of such a message can be "ALC-WKS-123-456" or
"ALC-XYZ-432-321" or "X754RT3". Most message identifiers are Workspace identifiers
of the form ALC-XYZ-123-456; however, there may also be identifiers from other
technologies and in different formats.
Use the CompositeMessage
class for nested error messages.
Propriétés publiques
Propriété | Défini par | ||
---|---|---|---|
constructor : Object
Référence à l’objet de classe ou à la fonction constructeur d’une occurrence donnée d’un objet. | Object | ||
date : Date [lecture seule]
The time the message was recorded at. | Message | ||
formattedMessage : String [override] [lecture seule]
The localized message text with all substitutions and is appropriately formatted for display. | CompositeMessage | ||
logLevel : int
The logging level of the message. | Message | ||
messageId : String [override] [lecture seule]
The composite message identifier. | CompositeMessage | ||
nestedId : String [lecture seule]
The nested message identifier. | CompositeMessage | ||
rawMessage : String [override] [lecture seule]
The localized message text with all substitutions, but the text is not
formatted with the standard UI formatting. | CompositeMessage | ||
topLevelId : String [lecture seule]
The top-level message identifier. | CompositeMessage |
Méthodes publiques
Méthode | Défini par | ||
---|---|---|---|
Constructor. | CompositeMessage | ||
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, weakRef:Boolean = false):void
Registers an event listener object with an EventDispatcher object so that the listener
receives notification of an event. | Message | ||
Dispatches an event into the event flow. | Message | ||
Checks whether the EventDispatcher object has any listeners registered for a specific type
of event. | Message | ||
Indique si la propriété spécifiée d’un objet est définie. | Object | ||
Indique si une occurrence de la classe Object figure dans la chaîne de prototype de l’objet spécifié en tant que paramètre. | Object | ||
Indique si la propriété spécifiée existe et est énumérable. | Object | ||
Removes a listener from the EventDispatcher object. | Message | ||
Définit la disponibilité d’une propriété dynamique pour les opérations en boucle. | Object | ||
Renvoie la représentation de chaîne de cet objet, formatée selon les paramètres régionaux en vigueur. | Object | ||
Renvoie la représentation sous forme de chaîne de l’objet spécifié. | Object | ||
Renvoie la valeur primitive de l’objet spécifié. | Object | ||
Checks whether an event listener is registered with this EventDispatcher object or any of its ancestors for the specified event type. | Message |
Détails de la propriété
formattedMessage | propriété |
formattedMessage:String
[lecture seule] [override] Version du langage: | ActionScript 3.0 |
Version du produit: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Versions du moteur d’exécution: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The localized message text with all substitutions and is appropriately formatted for display.
Implémentation
override public function get formattedMessage():String
messageId | propriété |
messageId:String
[lecture seule] [override] Version du langage: | ActionScript 3.0 |
Version du produit: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Versions du moteur d’exécution: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The composite message identifier. The returned string value is equivalent
to retrieving the strings from the topLeveId
and nestedId
properties. The format of the string returned is topLevelId() + "/" + nestedId()
.
Implémentation
override public function get messageId():String
nestedId | propriété |
nestedId:String
[lecture seule] Version du langage: | ActionScript 3.0 |
Version du produit: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Versions du moteur d’exécution: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The nested message identifier.
Implémentation
public function get nestedId():String
rawMessage | propriété |
rawMessage:String
[lecture seule] [override] Version du langage: | ActionScript 3.0 |
Version du produit: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Versions du moteur d’exécution: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The localized message text with all substitutions, but the text is not formatted with the standard UI formatting.
Implémentation
override public function get rawMessage():String
topLevelId | propriété |
topLevelId:String
[lecture seule] Version du langage: | ActionScript 3.0 |
Version du produit: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Versions du moteur d’exécution: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The top-level message identifier.
Implémentation
public function get topLevelId():String
Détails du constructeur
CompositeMessage | () | Constructeur |
public function CompositeMessage(id:String, nestedId:String, nestedMessage:String, params:Array)
Version du langage: | ActionScript 3.0 |
Version du produit: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Versions du moteur d’exécution: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Constructor.
Paramètresid:String — Specifies the message identifier.
| |
nestedId:String — Specifies the nested message identifier.
| |
nestedMessage:String — Specifies the nested message.
| |
params:Array — Specifies an array of message parameters. These are substituted into the message.
|
Tue Jun 12 2018, 09:30 AM Z