Subversion Repositories SmartDukaan

Rev

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

Rev 1992 Rev 2359
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;
-
 
10
 
9
 
11
public class Shortcuts extends ResizeComposite {
10
public class Shortcuts extends ResizeComposite {
12
 
11
 
13
  interface Binder extends UiBinder<StackLayoutPanel, Shortcuts> { }
12
  interface Binder extends UiBinder<StackLayoutPanel, Shortcuts> { }
14
  private static final Binder binder = GWT.create(Binder.class);
13
  private static final Binder binder = GWT.create(Binder.class);
15
 
14
  
16
  @UiField CatalogTree catalogtree;
15
  @UiField CatalogTree catalogtree;
-
 
16
  //@UiField FileUploadParams fileUploadParams;
17
  
17
  
18
  public Shortcuts() {
18
  public Shortcuts() {
19
    initWidget(binder.createAndBindUi(this));
19
    initWidget(binder.createAndBindUi(this));
20
  }
20
  }
21
  
21
  
22
  public CatalogTree getCatalogTree() {
22
  public CatalogTree getCatalogTree() {
23
      return catalogtree;
23
      return catalogtree;
24
  }
24
  }
-
 
25
  
25
}
26
}