Source: xxe/editor/ShowStatusEvent.js

/**
 * {@link XMLEditorEvent} sent by the server when message needs to be displayed 
 * by the status tool.
 */
class ShowStatusEvent extends XMLEditorEvent {
    constructor(xmlEditor, data) {
        super(xmlEditor, data, "showStatus");
    }

    /**
     * Get the <code>message</code> property of this event:
     * the message to be displayed by the status tool.
     *
     * @type {string}
     */
    get message() {
        return this._message;
    }
    
    /**
     * Get the <code>autoErase</code> property of this event.
     *
     * @type {boolean}
     */
    get autoErase() {
        return this._autoErase;
    }
}