Pacchetto | lc.foundation.util |
Classe | public class CompositeMessage |
Ereditarietà | CompositeMessage Message Object |
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Document Services - Area di lavoro 9 |
Versioni runtime: | 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.
Proprietà pubbliche
Proprietà | Definito da | ||
---|---|---|---|
constructor : Object
Un riferimento all'oggetto classe o alla funzione di costruzione per una determinata istanza di oggetto. | Object | ||
date : Date [sola lettura]
The time the message was recorded at. | Message | ||
formattedMessage : String [override] [sola lettura]
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] [sola lettura]
The composite message identifier. | CompositeMessage | ||
nestedId : String [sola lettura]
The nested message identifier. | CompositeMessage | ||
rawMessage : String [override] [sola lettura]
The localized message text with all substitutions, but the text is not
formatted with the standard UI formatting. | CompositeMessage | ||
topLevelId : String [sola lettura]
The top-level message identifier. | CompositeMessage |
Metodi pubblici
Metodo | Definito da | ||
---|---|---|---|
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 | ||
Indica se per un oggetto è definita una proprietà specifica. | Object | ||
Indica se un'istanza della classe Object si trova nella catena di prototipi dell'oggetto specificato come parametro. | Object | ||
Indica se la proprietà specificata esiste ed è enumerabile. | Object | ||
Removes a listener from the EventDispatcher object. | Message | ||
Imposta la disponibilità di una proprietà dinamica per le operazioni cicliche. | Object | ||
Restituisce la rappresentazione in formato stringa di questo oggetto, formattato in base alle convenzioni specifiche per le versioni localizzate. | Object | ||
Restituisce la rappresentazione in formato stringa dell'oggetto specificato. | Object | ||
Restituisce il valore di base dell'oggetto specificato. | Object | ||
Checks whether an event listener is registered with this EventDispatcher object or any of its ancestors for the specified event type. | Message |
Descrizione delle proprietà
formattedMessage | proprietà |
formattedMessage:String
[sola lettura] [override] Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Document Services - Area di lavoro 9 |
Versioni runtime: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The localized message text with all substitutions and is appropriately formatted for display.
Implementazione
override public function get formattedMessage():String
messageId | proprietà |
messageId:String
[sola lettura] [override] Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Document Services - Area di lavoro 9 |
Versioni runtime: | 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()
.
Implementazione
override public function get messageId():String
nestedId | proprietà |
nestedId:String
[sola lettura] Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Document Services - Area di lavoro 9 |
Versioni runtime: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The nested message identifier.
Implementazione
public function get nestedId():String
rawMessage | proprietà |
rawMessage:String
[sola lettura] [override] Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Document Services - Area di lavoro 9 |
Versioni runtime: | 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.
Implementazione
override public function get rawMessage():String
topLevelId | proprietà |
topLevelId:String
[sola lettura] Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Document Services - Area di lavoro 9 |
Versioni runtime: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The top-level message identifier.
Implementazione
public function get topLevelId():String
Descrizione della funzione di costruzione
CompositeMessage | () | Funzione di costruzione |
public function CompositeMessage(id:String, nestedId:String, nestedMessage:String, params:Array)
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Document Services - Area di lavoro 9 |
Versioni runtime: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Constructor.
Parametriid: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, 02:44 PM Z