Skip to content

Instantly share code, notes, and snippets.

@olafleur
Created December 1, 2015 19:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save olafleur/ac23b89e4d73693b0363 to your computer and use it in GitHub Desktop.
Save olafleur/ac23b89e4d73693b0363 to your computer and use it in GitHub Desktop.
private final AsyncProvider<MyBundle> asyncProvider;
private SecondService secondService;
private FirstService firstService;
@Inject
CareersPresenter(
EventBus eventBus,
MyView view,
MyProxy proxy,
AsyncProvider<MyBundle> asyncProvider) {
super(eventBus, view, proxy, ApplicationPresenter.SLOT_MAIN);
this.asyncProvider = asyncProvider;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment