Package com.changestuffs.shared.actions

Examples of com.changestuffs.shared.actions.AddFriend


    placeManager.revealPlace(request.build());
  }

  @Override
  public void handleContact(final String email) {
    dispatcher.execute(new AddFriend(email), new AsyncCallback<AddFriendResult>() {
      @Override
      public void onFailure(Throwable arg0) {
        GWT.log("Unexpected error", arg0);
      }
      @Override
View Full Code Here


    });
  }

  @Override
  public void addPendingFriend(final String contact) {
    dispatcher.execute(new AddFriend(contact), new AsyncCallback<AddFriendResult>() {
      @Override
      public void onFailure(Throwable caught) {
        GWT.log("Error doing AddFriend", caught);
      }
      @Override
View Full Code Here

TOP

Related Classes of com.changestuffs.shared.actions.AddFriend

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.