Package com.google.gwt.sample.contacts.client.event

Examples of com.google.gwt.sample.contacts.client.event.ContactUpdatedEvent


      }

      @Override
      public void onSuccess(Contact result) {

        eventBus.fireEvent(new ContactUpdatedEvent(result));
      }
    });
  }
View Full Code Here


    contact.setLastName(display.getLastName().getValue());
    contact.setEmailAddress(display.getEmailAddress().getValue());
   
    rpcService.updateContact(contact, new AsyncCallback<Contact>() {
        public void onSuccess(Contact result) {
          eventBus.fireEvent(new ContactUpdatedEvent(result));
        }
        public void onFailure(Throwable caught) {
          Window.alert("Error updating contact");
        }
    });
View Full Code Here

TOP

Related Classes of com.google.gwt.sample.contacts.client.event.ContactUpdatedEvent

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.