Package com.changestuffs.shared.actions

Examples of com.changestuffs.shared.actions.SendMessage


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


    assertEquals(conversation.get(0).toString(), person1, conversation.get(0).getFrom());
    assertEquals(conversation.get(1).toString(), person2, conversation.get(1).getFrom());
  }
 
  private SendMessage createMessage(String body, String sendingTo){
    SendMessage message = new SendMessage(sendingTo, body);
    return message;
  }
View Full Code Here

TOP

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

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.