Rev 167 |
Details |
Compare with Previous |
Last modification |
View Log
| RSS feed
| Rev |
Author |
Line No. |
Line |
| 167 |
ashish |
1 |
package in.shop2020.hotspot.dashbaord.client.gin;
|
|
|
2 |
|
|
|
3 |
import org.enunes.gwt.mvp.client.EventBus;
|
|
|
4 |
|
|
|
5 |
import in.shop2020.hotspot.dashbaord.client.MainPresenter;
|
|
|
6 |
|
|
|
7 |
import com.google.gwt.inject.client.GinModules;
|
|
|
8 |
import com.google.gwt.inject.client.Ginjector;
|
|
|
9 |
|
|
|
10 |
@GinModules(Module.class)
|
|
|
11 |
public interface Injector extends Ginjector{
|
|
|
12 |
|
|
|
13 |
MainPresenter getMainPresenter();
|
|
|
14 |
|
|
|
15 |
EventBus getEventBus();
|
|
|
16 |
|
|
|
17 |
}
|