public interface DaimMsgListener extends EventListener
| Modifier and Type | Method and Description |
|---|---|
void |
incomingICQ(UserInfo from,
int uin,
int args,
String message)
We received an ICQ message.
|
void |
incomingIM(Buddy buddy,
UserInfo from,
AOLIM args)
Called when a message is received from someone.
|
void |
joinRoomRequest(JoinRoomRequest jrr)
Someone requested us to join a chat room.
|
void |
receivedContacts(UserInfo from,
int uin,
Map contact,
boolean massmessage)
Received a list of contacts in an ICQ message
In the contact Map, the keys are UINs as Strings, and the values are the correcponding nick names.
|
void |
receivedICQSMS(UserInfo from,
int uin,
ICQSMSMessage message,
boolean massmessage)
Received SMS message over ICQ
|
void |
receivedURL(UserInfo from,
int uin,
String url,
String description,
boolean massmessage)
Received an ICQ URL message
|
void |
typingNotification(String sn,
short typing)
Typing notification for a user.
|
void incomingIM(Buddy buddy, UserInfo from, AOLIM args)
buddy - Buddy who sent the message, or null if not created yet.from - UserInfoargs - void joinRoomRequest(JoinRoomRequest jrr)
void typingNotification(String sn, short typing)
sn - Screen Nametyping - Typing code.void incomingICQ(UserInfo from, int uin, int args, String message)
from - UserInfouin - UIN#args - Args. See AIMConstants.AIM_ICQMSG_*message - Message.void receivedURL(UserInfo from, int uin, String url, String description, boolean massmessage)
from - UserInfouin - UIN#url - URLdescription - URL Description or nullmassmessage - Is this a mass-message?void receivedContacts(UserInfo from, int uin, Map contact, boolean massmessage)
from - UserInfouin - UIN#contact - HashMapmassmessage - Is this a mass-message?void receivedICQSMS(UserInfo from, int uin, ICQSMSMessage message, boolean massmessage)
from - UserInfouin - UIN#message - ICQSMSMessagemassmessage - Is this a mass-message?