Home | History | Annotate | Download | only in afe
      1 package autotest.afe;
      2 
      3 import com.google.gwt.user.client.ui.HasText;
      4 import com.google.gwt.user.client.ui.HasValue;
      5 import com.google.gwt.user.client.ui.RadioButton;
      6 
      7 public interface IRadioButton extends HasValue<Boolean>, HasText {
      8     public void setEnabled(boolean enabled);
      9 
     10     public static class RadioButtonImpl extends RadioButton implements IRadioButton {
     11         public RadioButtonImpl(String name) {
     12             super(name);
     13         }
     14 
     15         public RadioButtonImpl(String name, String choice) {
     16             super(name, choice);
     17         }
     18     }
     19 }
     20