Examples of EditAuthorEvent


Examples of nm.aleksey.client.events.EditAuthorEvent

  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

Examples of nm.aleksey.client.events.EditAuthorEvent

  protected void refreshSelection() {
    AuthorProxy author = selectionModel.getSelectedObject();
    if (author == null) {
      return;
    }
    getClientFactory().getEventBus().fireEvent(new EditAuthorEvent(author));
    selectionModel.setSelected(author, false);
  }
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.