Пакет | lc.foundation.util |
Класс | public class CompositeMessage |
Наследование | CompositeMessage Message Object |
Язык версии: | ActionScript 3.0 |
Версия продукта: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Версии среды выполнения: | 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.
Общедоступные свойства
Свойство | Определено | ||
---|---|---|---|
constructor : Object
Ссылка на объект класса или функцию конструктора для данного экземпляра объекта. | Object | ||
date : Date [только для чтения]
The time the message was recorded at. | Message | ||
formattedMessage : String [переопределить] [только для чтения]
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 [переопределить] [только для чтения]
The composite message identifier. | CompositeMessage | ||
nestedId : String [только для чтения]
The nested message identifier. | CompositeMessage | ||
rawMessage : String [переопределить] [только для чтения]
The localized message text with all substitutions, but the text is not
formatted with the standard UI formatting. | CompositeMessage | ||
topLevelId : String [только для чтения]
The top-level message identifier. | CompositeMessage |
Общедоступные методы
Метод | Определено | ||
---|---|---|---|
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 | ||
Показывает, определено ли заданное свойство для объекта. | Object | ||
Показывает, есть ли экземпляр класса Object в цепи прототипов объекта, заданного в качестве параметра. | Object | ||
Показывает наличие заданного свойства и его перечисляемость. | Object | ||
Removes a listener from the EventDispatcher object. | Message | ||
Задает доступность динамического свойства для операций цикла. | Object | ||
Возвращает строковое представление этого объекта, отформатированного в соответствии со стандартами, принятыми для данной локали. | Object | ||
Возвращает строковое представление заданного объекта. | Object | ||
Возвращает элементарное значение заданного объекта. | Object | ||
Checks whether an event listener is registered with this EventDispatcher object or any of its ancestors for the specified event type. | Message |
Сведения о свойстве
formattedMessage | свойство |
formattedMessage:String
[только для чтения] [переопределить] Язык версии: | ActionScript 3.0 |
Версия продукта: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Версии среды выполнения: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The localized message text with all substitutions and is appropriately formatted for display.
Реализация
override public function get formattedMessage():String
messageId | свойство |
messageId:String
[только для чтения] [переопределить] Язык версии: | ActionScript 3.0 |
Версия продукта: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Версии среды выполнения: | 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()
.
Реализация
override public function get messageId():String
nestedId | свойство |
nestedId:String
[только для чтения] Язык версии: | ActionScript 3.0 |
Версия продукта: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Версии среды выполнения: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The nested message identifier.
Реализация
public function get nestedId():String
rawMessage | свойство |
rawMessage:String
[только для чтения] [переопределить] Язык версии: | ActionScript 3.0 |
Версия продукта: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Версии среды выполнения: | 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.
Реализация
override public function get rawMessage():String
topLevelId | свойство |
topLevelId:String
[только для чтения] Язык версии: | ActionScript 3.0 |
Версия продукта: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Версии среды выполнения: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The top-level message identifier.
Реализация
public function get topLevelId():String
Сведения о конструкторе
CompositeMessage | () | Конструктор |
public function CompositeMessage(id:String, nestedId:String, nestedMessage:String, params:Array)
Язык версии: | ActionScript 3.0 |
Версия продукта: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Версии среды выполнения: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Constructor.
Параметрыid: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, 11:34 AM Z