| OLD | NEW |
| (Empty) |
| 1 package autotest.afe; | |
| 2 | |
| 3 import com.google.gwt.event.dom.client.HasClickHandlers; | |
| 4 import com.google.gwt.user.client.ui.CheckBox; | |
| 5 import com.google.gwt.user.client.ui.HasText; | |
| 6 import com.google.gwt.user.client.ui.HasValue; | |
| 7 | |
| 8 public interface ICheckBox extends HasText, HasValue<Boolean>, HasClickHandlers
{ | |
| 9 public void setEnabled(boolean enabled); | |
| 10 public void setVisible(boolean visible); | |
| 11 public boolean isVisible(); | |
| 12 | |
| 13 public static class CheckBoxImpl extends CheckBox implements ICheckBox { | |
| 14 public CheckBoxImpl() {} | |
| 15 | |
| 16 public CheckBoxImpl(String label) { | |
| 17 super(label); | |
| 18 } | |
| 19 } | |
| 20 } | |
| OLD | NEW |