|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.trolltech.qt.internal.QSignalEmitterInternal
com.trolltech.qt.QSignalEmitter
com.trolltech.qt.QtJambiObject
com.trolltech.qt.core.QObject
com.trolltech.qt.xmlpatterns.QAbstractMessageHandler
public abstract class QAbstractMessageHandler
The QAbstractMessageHandler class provides a callback interface for handling messages. QAbstractMessageHandler is an abstract base class that provides a callback interface for handling messages. For example, class QXmlQuery
parses and runs an XQuery. When it detects a compile or runtime error, it generates an appropriate error message, but rather than output the message itself, it passes the message to the message()
function of its QAbstractMessageHandler. See QXmlQuery::setMessageHandler()
.
You create a message handler by subclassing QAbstractMessageHandler and implementing handleMessage()
. You then pass a pointer to an instance of your subclass to any classes that must generate messages. The messages are sent to the message handler via the message()
function, which forwards them to your handleMessge(). The effect is to serialize the handling of all messages, which means your QAbstractMessageHandler subclass is thread safe.
A single instance of QAbstractMessageHandler can be called on to handle messages from multiple sources. Hence, the content of a message, which is the description parameter passed to message()
and handleMessage()
, must be interpreted in light of the context that required the message to be sent. That context is specified by the identifier and sourceLocation parameters to message()
handleMessage()
.
Nested Class Summary |
---|
Nested classes/interfaces inherited from class com.trolltech.qt.QSignalEmitter |
---|
QSignalEmitter.AbstractSignal, QSignalEmitter.Signal0, QSignalEmitter.Signal1, QSignalEmitter.Signal2, QSignalEmitter.Signal3, QSignalEmitter.Signal4, QSignalEmitter.Signal5, QSignalEmitter.Signal6, QSignalEmitter.Signal7, QSignalEmitter.Signal8, QSignalEmitter.Signal9 |
Nested classes/interfaces inherited from class com.trolltech.qt.internal.QSignalEmitterInternal |
---|
com.trolltech.qt.internal.QSignalEmitterInternal.AbstractSignalInternal |
Field Summary |
---|
Fields inherited from class com.trolltech.qt.internal.QSignalEmitterInternal |
---|
currentSender |
Method Summary | |
---|---|
protected abstract void |
handleMessage(com.trolltech.qt.core.Global.QtMsgType type,
java.lang.String description,
QUrl identifier,
QSourceLocation sourceLocation)
This function must be implemented by the sub-class. |
void |
message(com.trolltech.qt.core.Global.QtMsgType type,
java.lang.String description)
Sends a message to this message handler. |
void |
message(com.trolltech.qt.core.Global.QtMsgType type,
java.lang.String description,
QUrl identifier)
Sends a message to this message handler. |
void |
message(com.trolltech.qt.core.Global.QtMsgType type,
java.lang.String description,
QUrl identifier,
QSourceLocation sourceLocation)
Sends a message to this message handler. |
Methods inherited from class com.trolltech.qt.core.QObject |
---|
childEvent, children, connectSlotsByName, customEvent, disposeLater, dumpObjectInfo, dumpObjectTree, dynamicPropertyNames, event, eventFilter, findChild, findChild, findChild, findChildren, findChildren, findChildren, findChildren, indexOfProperty, installEventFilter, isWidgetType, killTimer, moveToThread, objectName, parent, properties, property, removeEventFilter, setObjectName, setParent, setProperty, startTimer, timerEvent, toString, userProperty |
Methods inherited from class com.trolltech.qt.QtJambiObject |
---|
dispose, disposed, equals, finalize, reassignNativeResources, tr, tr, tr |
Methods inherited from class com.trolltech.qt.QSignalEmitter |
---|
blockSignals, disconnect, disconnect, signalsBlocked, signalSender, thread |
Methods inherited from class com.trolltech.qt.internal.QSignalEmitterInternal |
---|
__qt_signalInitialization |
Methods inherited from class java.lang.Object |
---|
clone, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Methods inherited from interface com.trolltech.qt.QtJambiInterface |
---|
disableGarbageCollection, nativeId, nativePointer, reenableGarbageCollection, setJavaOwnership |
Method Detail |
---|
public final void message(com.trolltech.qt.core.Global.QtMsgType type, java.lang.String description, QUrl identifier)
Typically, this class is used for reporting errors, as is the case for QXmlQuery
, which uses a QAbstractMessageHandler to report compile and runtime XQuery errors. Hence, using a QUrl
as the message identifier is was inspired by the explanation of error handling in the XQuery language. Because the identifier is composed of a namespace URI and a local part, identifiers with the same local part are unique. The caller is responsible for ensuring that identifier is either a valid QUrl
or a default constructed QUrl
.
sourceLocation identifies a location in a resource (i.e., file or document) where the need for reporting a message was detected.
This function unconditionally calls handleMessage()
, passing all its parameters unmodified.
public final void message(com.trolltech.qt.core.Global.QtMsgType type, java.lang.String description)
Typically, this class is used for reporting errors, as is the case for QXmlQuery
, which uses a QAbstractMessageHandler to report compile and runtime XQuery errors. Hence, using a QUrl
as the message identifier is was inspired by the explanation of error handling in the XQuery language. Because the identifier is composed of a namespace URI and a local part, identifiers with the same local part are unique. The caller is responsible for ensuring that identifier is either a valid QUrl
or a default constructed QUrl
.
sourceLocation identifies a location in a resource (i.e., file or document) where the need for reporting a message was detected.
This function unconditionally calls handleMessage()
, passing all its parameters unmodified.
public final void message(com.trolltech.qt.core.Global.QtMsgType type, java.lang.String description, QUrl identifier, QSourceLocation sourceLocation)
Typically, this class is used for reporting errors, as is the case for QXmlQuery
, which uses a QAbstractMessageHandler to report compile and runtime XQuery errors. Hence, using a QUrl
as the message identifier is was inspired by the explanation of error handling in the XQuery language. Because the identifier is composed of a namespace URI and a local part, identifiers with the same local part are unique. The caller is responsible for ensuring that identifier is either a valid QUrl
or a default constructed QUrl
.
sourceLocation identifies a location in a resource (i.e., file or document) where the need for reporting a message was detected.
This function unconditionally calls handleMessage()
, passing all its parameters unmodified.
protected abstract void handleMessage(com.trolltech.qt.core.Global.QtMsgType type, java.lang.String description, QUrl identifier, QSourceLocation sourceLocation)
message()
will call this function, passing in its parameters, type, description, identifier and sourceLocation unmodified.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |