jabber
Interface JabberListener

All Known Implementing Classes:
MidletEventListener

public interface JabberListener

Interface for jabber events listeners


Method Summary
 void disconnectedEvent()
           
 void newComposingEvent(Conversation _conv)
           
 void newConversationEvent(Conversation _conversation)
          A roster (or group of rosters) has set up a conversation with the user
 void newInvitationEvent(java.lang.String from, java.lang.String room)
          A new invitation has been received.
 void newMessageEvent(Conversation _conversation, int tab)
          A new message has been received for the given conversation.
 void notifyError(Conversation _conversation, Message _errorMessage)
          An error occured on the given conversation
 void notifyJudInfo(java.lang.String info)
           
 void notifyPresence(Jid _roster, java.lang.String _presence)
           
 void notifyPresenceError(java.lang.String _error)
           
 void notifyRoster()
           
 void unauthorizedEvent(java.lang.String reason)
           
 void updateScreen()
           
 

Method Detail

notifyRoster

void notifyRoster()

notifyJudInfo

void notifyJudInfo(java.lang.String info)

newConversationEvent

void newConversationEvent(Conversation _conversation)
A roster (or group of rosters) has set up a conversation with the user


newMessageEvent

void newMessageEvent(Conversation _conversation,
                     int tab)
A new message has been received for the given conversation.


newComposingEvent

void newComposingEvent(Conversation _conv)

newInvitationEvent

void newInvitationEvent(java.lang.String from,
                        java.lang.String room)
A new invitation has been received.


notifyError

void notifyError(Conversation _conversation,
                 Message _errorMessage)
An error occured on the given conversation


disconnectedEvent

void disconnectedEvent()

notifyPresence

void notifyPresence(Jid _roster,
                    java.lang.String _presence)

notifyPresenceError

void notifyPresenceError(java.lang.String _error)

updateScreen

void updateScreen()

unauthorizedEvent

void unauthorizedEvent(java.lang.String reason)