| 1961 |
ankur.sing |
1 |
|
|
|
2 |
package in.shop2020.catalog.dashboard.client;
|
|
|
3 |
|
|
|
4 |
import com.google.gwt.core.client.GWT;
|
|
|
5 |
import com.google.gwt.uibinder.client.UiBinder;
|
|
|
6 |
import com.google.gwt.uibinder.client.UiField;
|
|
|
7 |
import com.google.gwt.user.client.ui.ResizeComposite;
|
|
|
8 |
import com.google.gwt.user.client.ui.StackLayoutPanel;
|
|
|
9 |
|
|
|
10 |
public class Shortcuts extends ResizeComposite {
|
|
|
11 |
|
|
|
12 |
interface Binder extends UiBinder<StackLayoutPanel, Shortcuts> { }
|
|
|
13 |
private static final Binder binder = GWT.create(Binder.class);
|
|
|
14 |
|
|
|
15 |
@UiField CatalogTree catalogtree;
|
|
|
16 |
|
|
|
17 |
public Shortcuts() {
|
|
|
18 |
initWidget(binder.createAndBindUi(this));
|
|
|
19 |
}
|
|
|
20 |
}
|