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;
|
|
|
2 |
|
|
|
3 |
import org.enunes.gwt.mvp.client.presenter.Presenter;
|
|
|
4 |
|
|
|
5 |
public interface MainPresenter extends Presenter<MainPresenter.Display>{
|
|
|
6 |
|
|
|
7 |
public interface Display extends org.enunes.gwt.mvp.client.view.Display {
|
|
|
8 |
|
|
|
9 |
void addContent(org.enunes.gwt.mvp.client.view.Display display);
|
|
|
10 |
void removeContent();
|
|
|
11 |
|
|
|
12 |
}
|
|
|
13 |
|
|
|
14 |
|
|
|
15 |
}
|