public NavigationActivity(ClientFactory clientFactory, EventBus eventBus) { this.clientFactory = clientFactory; this.navigationView = clientFactory.getNavigationView(); this.navigationView.setPresenter(this); this.navigationView.setEventBus(eventBus); }
@Override public void goTo(Place place) { clientFactory.getPlaceController().goTo(place); }