| Index: frontend/client/src/autotest/afe/IRadioButton.java
|
| diff --git a/frontend/client/src/autotest/afe/IRadioButton.java b/frontend/client/src/autotest/afe/IRadioButton.java
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..571eb04c216b67fce09211927118eae039a00fd1
|
| --- /dev/null
|
| +++ b/frontend/client/src/autotest/afe/IRadioButton.java
|
| @@ -0,0 +1,19 @@
|
| +package autotest.afe;
|
| +
|
| +import com.google.gwt.user.client.ui.HasText;
|
| +import com.google.gwt.user.client.ui.HasValue;
|
| +import com.google.gwt.user.client.ui.RadioButton;
|
| +
|
| +public interface IRadioButton extends HasValue<Boolean>, HasText {
|
| + public void setEnabled(boolean enabled);
|
| +
|
| + public static class RadioButtonImpl extends RadioButton implements IRadioButton {
|
| + public RadioButtonImpl(String name) {
|
| + super(name);
|
| + }
|
| +
|
| + public RadioButtonImpl(String name, String choice) {
|
| + super(name, choice);
|
| + }
|
| + }
|
| +}
|
|
|