Hi everyone, can anyone tell me how to get the list of blocked buddies. I am able to get the list of all contacts but don't know to get block buddy list.
Thanks,
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
isInList(MsnList) - Method in interface net.sf.jml.MsnContact
for this purpose. Make you own methos the retrieve the BL contacts using the following tip :)
MsnContact loc_contact = allContacts.next() ; // Iterate the list of all contacts
boolean inBlockList = loc_contact.isInList(MsnList.BL) ;
// now the inBlockList indicates whether the contact is in your BL or not
Sincerelly, Ian
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi everyone, can anyone tell me how to get the list of blocked buddies. I am able to get the list of all contacts but don't know to get block buddy list.
Thanks,
You can use the
isInList(MsnList) - Method in interface net.sf.jml.MsnContact
for this purpose. Make you own methos the retrieve the BL contacts using the following tip :)
MsnContact loc_contact = allContacts.next() ; // Iterate the list of all contacts
boolean inBlockList = loc_contact.isInList(MsnList.BL) ;
// now the inBlockList indicates whether the contact is in your BL or not
Sincerelly, Ian
Thanks Ian, got your point, now I am able to get block buddy list. Thanks for your help.