Example usage for com.google.gwt.place.shared PlaceController PlaceController

List of usage examples for com.google.gwt.place.shared PlaceController PlaceController

Introduction

In this page you can find the example usage for com.google.gwt.place.shared PlaceController PlaceController.

Prototype

public PlaceController(EventBus eventBus) 

Source Link

Document

Create a new PlaceController with a DefaultDelegate .

Usage

From source file:com.acme.gwt.client.ioc.TvGuideClientModule.java

License:Apache License

@Provides
PlaceController providePlaceController(EventBus eventBus) {
    return new PlaceController(eventBus);
}

From source file:com.googlecode.mgwt.examples.showcase.client.ClientFactoryImpl.java

License:Apache License

public ClientFactoryImpl() {
    eventBus = new SimpleEventBus();

    placeController = new PlaceController(eventBus);

    homeViewImpl = new ShowCaseListViewGwtImpl();
}

From source file:com.imaginedreal.gwt.palantir.client.ClientFactoryImpl.java

License:Apache License

public ClientFactoryImpl() {
    eventBus = new SimpleEventBus();
    placeController = new PlaceController(eventBus);
    swipeMenu = new SwipeMenu();
    homeView = new HomeViewGwtImpl();
}

From source file:com.imaginedreal.mgwt.trafficflow.client.ClientFactoryImpl.java

License:Apache License

public ClientFactoryImpl() {
    eventBus = new SimpleEventBus();
    placeController = new PlaceController(eventBus);
    seattleView = new SeattleViewGwtImpl();
    swipeMenu = new SwipeMenu();
    dbService = GWT.create(TrafficFlowDataService.class);
}

From source file:com.jettmarks.clue.client.ClientFactoryImpl.java

License:Apache License

public ClientFactoryImpl() {
    eventBus = new SimpleEventBus();

    placeController = new PlaceController(eventBus);

    //      homeViewImpl = new ShowCaseListViewGwtImpl();
}

From source file:com.jettmarks.routes.client.ClientFactoryImpl.java

License:Apache License

public ClientFactoryImpl() {
    eventBus = new SimpleEventBus();

    placeController = new PlaceController(eventBus);

}

From source file:com.logikas.samples.errai.client.mvp.presenter.configure.MVPInitializer.java

License:Apache License

@Produces
@Singleton
public PlaceController getPlaceController(EventBus eventBus) {
    return new PlaceController(eventBus);
}

From source file:com.msco.mil.client.com.sencha.gxt.explorer.client.app.ioc.ExplorerModule.java

License:sencha.com license

@SuppressWarnings("deprecation")
@Provides
@Singleton
PlaceController providePlaceController(EventBus eventBus) {
    return new PlaceController(eventBus);
}

From source file:com.mynotes.client.gin.MyNotesDesktopModule.java

License:Open Source License

@Provides
@Singleton
public PlaceController getPlaceController(EventBus eventBus) {
    PlaceController placeController = new PlaceController(eventBus);

    return placeController;
}

From source file:com.seanchenxi.gwt.serenity.client.SerenityFactory.java

License:Apache License

public SerenityFactory() {
    eventBus = GWT.create(SimpleEventBus.class);
    placeController = new PlaceController(eventBus);

    layout = GWT.create(SerenityLayout.class);
    sidebar = GWT.create(Sidebar.class);
    contentList = GWT.create(ContentListView.class);
}