Package com.google.gwt.ricordo.client

Source Code of com.google.gwt.ricordo.client.RicordoMain

package com.google.gwt.ricordo.client;

import com.google.gwt.core.client.EntryPoint;
import com.google.gwt.core.client.GWT;
import com.google.gwt.event.shared.HandlerManager;
import com.google.gwt.user.client.ui.RootPanel;

public class RicordoMain implements EntryPoint {

  public void onModuleLoad() {
    QueryServiceAsync rpcService = GWT.create(QueryService.class);
    HandlerManager eventBus = new HandlerManager(null);
    AppController appViewer = new AppController(rpcService, eventBus);
    appViewer.go(RootPanel.get());
  }
}
TOP

Related Classes of com.google.gwt.ricordo.client.RicordoMain

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.