However, Shortcuts.java doesn't have this code. In fact, here is the
entire class definition:
public class Shortcuts extends ResizeComposite {
interface Binder extends UiBinder<StackLayoutPanel, Shortcuts> { }
private static final Binder binder = GWT.create(Binder.class);
@UiField Mailboxes mailboxes;
@UiField Tasks tasks;
@UiField Contacts contacts;
/**
* Constructs a new shortcuts widget using the specified images.
*
* @param images a bundle that provides the images for this widget
*/
public Shortcuts() {
initWidget(binder.createAndBindUi(this));
}
}
Any ideas??