xref: /aosp_15_r20/external/autotest/frontend/client/src/autotest/afe/IRadioButton.java (revision 9c5db1993ded3edbeafc8092d69fe5de2ee02df7)
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 {
setEnabled(boolean enabled)8     public void setEnabled(boolean enabled);
9 
10     public static class RadioButtonImpl extends RadioButton implements IRadioButton {
RadioButtonImpl(String name)11         public RadioButtonImpl(String name) {
12             super(name);
13         }
14 
RadioButtonImpl(String name, String choice)15         public RadioButtonImpl(String name, String choice) {
16             super(name, choice);
17         }
18     }
19 }
20