Package org.jivesoftware.smackx.debugger
Class EnhancedDebugger
- java.lang.Object
-
- org.jivesoftware.smack.debugger.SmackDebugger
-
- org.jivesoftware.smackx.debugger.EnhancedDebugger
-
public class EnhancedDebugger extends SmackDebugger
The EnhancedDebugger is a debugger that allows to debug sent, received and interpreted messages but also provides the ability to send ad-hoc messages composed by the user.A new EnhancedDebugger will be created for each connection to debug. All the EnhancedDebuggers will be shown in the same debug window provided by the class EnhancedDebuggerWindow.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
EnhancedDebugger.Factory
-
Field Summary
-
Fields inherited from class org.jivesoftware.smack.debugger.SmackDebugger
connection
-
-
Constructor Summary
Constructors Constructor Description EnhancedDebugger(XMPPConnection connection)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
incomingStreamSink(java.lang.CharSequence incomingCharSequence)
void
onIncomingStreamElement(TopLevelStreamElement streamElement)
Used by the connection to notify about an incoming top level stream element.void
onOutgoingStreamElement(TopLevelStreamElement streamElement)
Used by the connection to notify about a outgoing top level stream element.void
outgoingStreamSink(java.lang.CharSequence outgoingCharSequence)
Note that the sequence of characters may be pretty printed.void
userHasLogged(EntityFullJid user)
Called when a user has logged in to the server.-
Methods inherited from class org.jivesoftware.smack.debugger.SmackDebugger
newConnectionReader, newConnectionWriter, onIncomingElementCompleted, onOutgoingElementCompleted
-
-
-
-
Constructor Detail
-
EnhancedDebugger
public EnhancedDebugger(XMPPConnection connection)
-
-
Method Detail
-
outgoingStreamSink
public final void outgoingStreamSink(java.lang.CharSequence outgoingCharSequence)
Description copied from class:SmackDebugger
Note that the sequence of characters may be pretty printed.- Specified by:
outgoingStreamSink
in classSmackDebugger
- Parameters:
outgoingCharSequence
- the outgoing character sequence.
-
incomingStreamSink
public final void incomingStreamSink(java.lang.CharSequence incomingCharSequence)
- Specified by:
incomingStreamSink
in classSmackDebugger
-
userHasLogged
public void userHasLogged(EntityFullJid user)
Description copied from class:SmackDebugger
Called when a user has logged in to the server. The user could be an anonymous user, this means that the user would be of the form host/resource instead of the form user@host/resource.- Specified by:
userHasLogged
in classSmackDebugger
- Parameters:
user
- the user@host/resource that has just logged in
-
onIncomingStreamElement
public void onIncomingStreamElement(TopLevelStreamElement streamElement)
Description copied from class:SmackDebugger
Used by the connection to notify about an incoming top level stream element.This method is invoked right after the incoming stream was parsed.
- Specified by:
onIncomingStreamElement
in classSmackDebugger
- Parameters:
streamElement
- the incoming top level stream element.
-
onOutgoingStreamElement
public void onOutgoingStreamElement(TopLevelStreamElement streamElement)
Description copied from class:SmackDebugger
Used by the connection to notify about a outgoing top level stream element.This method is invoked right before the element is serialized to XML and put into the outgoing stream.
- Specified by:
onOutgoingStreamElement
in classSmackDebugger
- Parameters:
streamElement
- the outgoing top level stream element.
-
-