Home | History | Annotate | Download | only in afe
      1 package autotest.afe;
      2 
      3 import com.google.gwt.event.dom.client.HasClickHandlers;
      4 import com.google.gwt.user.client.ui.Button;
      5 import com.google.gwt.user.client.ui.HasText;
      6 
      7 public interface IButton extends HasText, HasClickHandlers {
      8     public void setEnabled(boolean enabled);
      9 
     10     public static class ButtonImpl extends Button implements IButton {
     11         public ButtonImpl() {}
     12 
     13         public ButtonImpl(String html) {
     14             super(html);
     15         }
     16     }
     17 }
     18