| Index: frontend/client/src/autotest/afe/ITextBox.java
|
| diff --git a/frontend/client/src/autotest/afe/ITextBox.java b/frontend/client/src/autotest/afe/ITextBox.java
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..4790cfba57367ce5572ebef61cc7bff2ee6283ae
|
| --- /dev/null
|
| +++ b/frontend/client/src/autotest/afe/ITextBox.java
|
| @@ -0,0 +1,12 @@
|
| +package autotest.afe;
|
| +
|
| +import com.google.gwt.event.dom.client.HasBlurHandlers;
|
| +import com.google.gwt.event.dom.client.HasKeyPressHandlers;
|
| +import com.google.gwt.user.client.ui.HasText;
|
| +import com.google.gwt.user.client.ui.TextBox;
|
| +
|
| +public interface ITextBox extends HasText, HasBlurHandlers, HasKeyPressHandlers {
|
| + public void setEnabled(boolean enabled);
|
| +
|
| + public static class TextBoxImpl extends TextBox implements ITextBox {}
|
| +}
|
|
|