added methods that allow us testing the typing notifications functionality

cusax-fix
Emil Ivov 20 years ago
parent f94860ab46
commit 006e96e97c

@ -19,7 +19,6 @@
import net.kano.joscar.snaccmd.loc.*;
import net.kano.joscar.snac.*;
import net.kano.joscar.flapcmd.*;
import net.kano.joscar.snaccmd.buddy.*;
import net.kano.joscar.snaccmd.conn.*;
import net.kano.joustsim.oscar.oscar.service.ssi.*;
import net.kano.joscar.snaccmd.error.*;
@ -241,6 +240,44 @@ public void sendTypingNotification(String buddy, TypingState state)
.setTypingState(state);
}
/**
* Adds a typing listener that would receive joust sim based on typing
* notifications received from <tt>buddy</tt>
* @param buddy the screenname of the buddy that we'd like to receive
* notifications from.
* @param l the <tt>ConversationListener</tt> (which also needs to be a
* TypingListener) that would be registered for typing notifications
* @throws ClassCastException if <tt>l</tt> is only an instance of
* <tt>ConversationListener</tt> without implementing
* <tt>TypingListener</tt>
*/
public void addTypingStateInfoListenerForBuddy( String buddy,
ConversationListener l)
throws ClassCastException
{
if (! (l instanceof TypingListener))
throw new ClassCastException(
"In order to receive typing notifications a typing listener "
+"needs to also implement " + TypingListener.class.getName());
conn.getIcbmService().getImConversation(new Screenname(buddy))
.addConversationListener(l);
}
/**
* Removes <tt>l</tt> so that it won't receive further typing events for
* <tt>buddy</tt>.
* @param buddy the screenname of the buddy that we'd like to stop receiving
* notifications from.
* @param l the <tt>ConversationListener</tt> to remove
*/
public void removeTypingStateInfoListenerForBuddy( String buddy,
ConversationListener l)
{
conn.getIcbmService().getImConversation(new Screenname(buddy))
.removeConversationListener(l);
}
/**
* Tries to find the buddy with screenname screenname in the given buddy
* list
@ -712,9 +749,7 @@ public void buddiesReordered(BuddyList list, Group group,
}
}
//------------- other utility stuff that is not really very user ---------------
//------------- other utility stuff that is not really very used ---------------
private class BuddyListener implements BuddyServiceListener{
public void gotBuddyStatus(BuddyService service, Screenname buddy,
FullUserInfo info)
@ -837,15 +872,6 @@ public void handleInvalidCertificates(InfoService service,
}
/**
* returns the first icq message received after calling this method
* @return asdf
*/
// public String receiveMessage()
// {
// return null;
// }
private class RetroListener
implements BuddyListLayoutListener, GroupListener
{

Loading…
Cancel
Save