Package nm.aleksey.shared

Examples of nm.aleksey.shared.AuthorContext.create()


  }

  @UiHandler("addAuthorButton")
  void onAddAuthorButtonClick(ClickEvent event) {
    AuthorContext context = getRequestFactory().authorRequest();
    AuthorProxy author = context.create(AuthorProxy.class);
    context.save(author);
    getClientFactory().getEventBus().fireEvent(
        new EditAuthorEvent(author, context));
  }
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.