Subversion Repositories SmartDukaan

Rev

Rev 1962 | Rev 2359 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1962 Rev 1992
Line 4... Line 4...
4
import com.google.gwt.core.client.GWT;
4
import com.google.gwt.core.client.GWT;
5
import com.google.gwt.uibinder.client.UiBinder;
5
import com.google.gwt.uibinder.client.UiBinder;
6
import com.google.gwt.uibinder.client.UiField;
6
import com.google.gwt.uibinder.client.UiField;
7
import com.google.gwt.user.client.ui.ResizeComposite;
7
import com.google.gwt.user.client.ui.ResizeComposite;
8
import com.google.gwt.user.client.ui.StackLayoutPanel;
8
import com.google.gwt.user.client.ui.StackLayoutPanel;
-
 
9
import com.google.gwt.user.client.ui.Tree;
9
 
10
 
10
public class Shortcuts extends ResizeComposite {
11
public class Shortcuts extends ResizeComposite {
11
 
12
 
12
  interface Binder extends UiBinder<StackLayoutPanel, Shortcuts> { }
13
  interface Binder extends UiBinder<StackLayoutPanel, Shortcuts> { }
13
  private static final Binder binder = GWT.create(Binder.class);
14
  private static final Binder binder = GWT.create(Binder.class);
14
 
15
 
15
  @UiField CatalogTree catalogtree;
16
  @UiField CatalogTree catalogtree;
16
 
17
  
17
  public Shortcuts() {
18
  public Shortcuts() {
18
    initWidget(binder.createAndBindUi(this));
19
    initWidget(binder.createAndBindUi(this));
19
  }
20
  }
-
 
21
  
-
 
22
  public CatalogTree getCatalogTree() {
-
 
23
      return catalogtree;
-
 
24
  }
20
}
25
}