Package com.gwtplatform.dispatch.client.gin

Examples of com.gwtplatform.dispatch.client.gin.DispatchAsyncModule


public class ClientModule extends AbstractPresenterModule {

  @Override
  protected void configure() {
    install(new DefaultModule(DefaultPlaceManager.class));
        install(new DispatchAsyncModule());
       
        bindConstant().annotatedWith(GaAccount.class).to("UA-42795708-1");
        bind(GoogleAnalyticsNavigationTracker.class).asEagerSingleton();

    bindPresenter(HomePresenter.class, HomePresenter.MyView.class,
View Full Code Here


public class ClientModule extends AbstractPresenterModule {

  @Override
  protected void configure() {
    install(new DefaultModule(DefaultPlaceManager.class));
        install(new DispatchAsyncModule());
       
        bindConstant().annotatedWith(GaAccount.class).to("UA-43538164-1");
        bind(GoogleAnalyticsNavigationTracker.class).asEagerSingleton();
       
        bindPresenter(MainPresenter.class, MainPresenter.MyView.class, MainView.class, MainPresenter.MyProxy.class);
View Full Code Here

TOP

Related Classes of com.gwtplatform.dispatch.client.gin.DispatchAsyncModule

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.