问题
I am using GWTP platform & eClipse to build webapp. In Eclipse, when creating a Presenter, it will create 3 files (ex: SearchPresenter.java, SearchView.java, & SearchView.ui.xml):
public class SearchView extends ViewImpl implements SearchPresenter.MyView
public class SearchPresenter extends
Presenter<SearchPresenter.MyView, SearchPresenter.MyProxy>{
....
private EventBus eventBus;
@Inject
public SearchPresenter(final EventBus eventBus, final MyView view) {
super(eventBus, view);
this.eventBus=eventBus;
}
}
To use eventBus, we just simply use eclipse to create EventBus file, ex MyEvent.java, then we call eventBus in SearchPresenter by using this code:
MyEvent mEvent=new MyEvent();
SearchPresenter.this.eventBus.fireEvent(mEvent);
now suppose I got a non-presenter class public class SearchDialogBox extends DialogBox
, then my question is how can i use MyEvent in SearchDialogBox? How to getEventBus() in SearchDialogBox?
回答1:
I' dont use GWTP, but I guess the following is ok.
@Inject private EventBus eventBus
should work (if you don't use it in SearchDialogBox constructor right away).
Otherwise try to find out which class in GWTP extends com.google.gwt.inject.client.Ginjector. Assuming it is called "MyInjector" just write :
private EventBus eventBus = MyInjector.INSTANCE.getEventBus();
回答2:
Have a look at https://github.com/ArcBees/GWTP/wiki/Events.
You basically implement HasHandlers
interface inject yourself the EventBus
.
回答3:
Make your SearchDialogBox to extend BaseEventHandler:
SearchDialogBox extends BaseEventHandler<YOUR_EVENT_BUS>
For DialogBox use composition instead of inheritance since now your SearchDialogBox extends BaseEventHandler
- Annotate your SearchDialogBox with @EventHandler (and @Singleton if needed)
In your YOUR_EVENT_BUS create at least one method that should be processed in SearchDialogBox
for example in YOUR_EVENT_BUS:
@Event(handlers = {SearchDialogBox.class}) void helloWorld();
and in SearchDialogBox
`public void onHelloWorld(){...}`
来源:https://stackoverflow.com/questions/19432624/how-to-use-eventbus-for-non-presenter-class-in-gwtp