Pakiet | lc.foundation.util |
Klasa | public class CompositeMessage |
Dziedziczenie | CompositeMessage Message Object |
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Wersje środowiska wykonawczego: | 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.
Właściwości publiczne
Właściwość | Zdefiniowane przez | ||
---|---|---|---|
constructor : Object
Odwołanie do obiektu klasy lub funkcji konstruktora, dotyczące danej instancji obiektu. | Object | ||
date : Date [tylko do odczytu]
The time the message was recorded at. | Message | ||
formattedMessage : String [przesłanianie] [tylko do odczytu]
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 [przesłanianie] [tylko do odczytu]
The composite message identifier. | CompositeMessage | ||
nestedId : String [tylko do odczytu]
The nested message identifier. | CompositeMessage | ||
rawMessage : String [przesłanianie] [tylko do odczytu]
The localized message text with all substitutions, but the text is not
formatted with the standard UI formatting. | CompositeMessage | ||
topLevelId : String [tylko do odczytu]
The top-level message identifier. | CompositeMessage |
Metody publiczne
Metoda | Zdefiniowane przez | ||
---|---|---|---|
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 | ||
Wskazuje, czy dla obiektu zdefiniowano określoną właściwość. | Object | ||
Wskazuje, czy instancja klasy Object należy do łańcucha prototypów obiektu określonego jako parametr. | Object | ||
Wskazuje, czy określona właściwość istnieje i jest przeliczalna. | Object | ||
Removes a listener from the EventDispatcher object. | Message | ||
Ustawia dostępność właściwości dynamicznej używanej w pętlach. | Object | ||
Zwraca ciąg reprezentujący obiekt — sformatowany zgodnie z konwencjami właściwymi dla ustawień regionalnych. | Object | ||
Zwraca ciąg reprezentujący określony obiekt. | Object | ||
Zwraca pierwotną wartość dla określonego obiektu. | Object | ||
Checks whether an event listener is registered with this EventDispatcher object or any of its ancestors for the specified event type. | Message |
Szczegół właściwości
formattedMessage | właściwość |
formattedMessage:String
[tylko do odczytu] [przesłanianie] Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Wersje środowiska wykonawczego: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The localized message text with all substitutions and is appropriately formatted for display.
Implementacja
override public function get formattedMessage():String
messageId | właściwość |
messageId:String
[tylko do odczytu] [przesłanianie] Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Wersje środowiska wykonawczego: | 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()
.
Implementacja
override public function get messageId():String
nestedId | właściwość |
nestedId:String
[tylko do odczytu] Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Wersje środowiska wykonawczego: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The nested message identifier.
Implementacja
public function get nestedId():String
rawMessage | właściwość |
rawMessage:String
[tylko do odczytu] [przesłanianie] Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Wersje środowiska wykonawczego: | 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.
Implementacja
override public function get rawMessage():String
topLevelId | właściwość |
topLevelId:String
[tylko do odczytu] Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Wersje środowiska wykonawczego: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The top-level message identifier.
Implementacja
public function get topLevelId():String
Konstruktor Szczegół
CompositeMessage | () | Konstruktor |
public function CompositeMessage(id:String, nestedId:String, nestedMessage:String, params:Array)
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Wersje środowiska wykonawczego: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Constructor.
Parametryid: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, 12:06 PM Z