Package net.solosky.maplefetion.client.response

Examples of net.solosky.maplefetion.client.response.DeleteBuddyResponseHandler


  public void deleteBuddy(Buddy buddy, ActionEventListener listener)
  {
    this.ensureOpened();
    SipcRequest request = null;
    request = this.messageFactory.createDeleteBuddyRequest(buddy.getUserId());
    request.setResponseHandler(new DeleteBuddyResponseHandler(context, this, listener, buddy));
    this.process(request);
  }
View Full Code Here

TOP

Related Classes of net.solosky.maplefetion.client.response.DeleteBuddyResponseHandler

Copyright © 2018 www.massapicom. 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.