/**
* @see hamsam.protocol.Protocol#typingStarted(hamsam.api.Buddy)
*/
public void typingStarted(Buddy buddy) throws UnsupportedOperationException, IllegalStateException {
if (!connected) {
throw new IllegalStateException("not connected yet!");
}
cmdHandler.typingStarted(buddy);
// todo - how do I get notified that my buddy started typing??? Not working yet
//listener.typingStarted(buddy);
}