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