Examples of IcbmService


Examples of net.kano.joustsim.oscar.oscar.service.icbm.IcbmService

    public void handleStateChange(StateEvent event) {
      State state = event.getNewState();
      if (state == State.ONLINE) {
        _conn = event.getAimConnection();
        _conn.getBuddyInfoManager().addGlobalBuddyInfoListener(new BuddyChangeListener());
        IcbmService icbmService = _conn.getIcbmService();
        icbmService.addIcbmListener(_icbmHandler);
        _connected = true;
      }
      else {
        AimConnection conn = event.getAimConnection();
        IcbmService icbmService = conn.getIcbmService();
        if (icbmService != null) {
          icbmService.removeIcbmListener(_icbmHandler);
        }
        _connected = false;
      }
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.