| Index: frontend/client/src/autotest/afe/ITextArea.java
|
| diff --git a/frontend/client/src/autotest/afe/ITextArea.java b/frontend/client/src/autotest/afe/ITextArea.java
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..aee39bd57cee3b684853b3af8f633b29de7e8adb
|
| --- /dev/null
|
| +++ b/frontend/client/src/autotest/afe/ITextArea.java
|
| @@ -0,0 +1,11 @@
|
| +package autotest.afe;
|
| +
|
| +import com.google.gwt.event.dom.client.HasChangeHandlers;
|
| +import com.google.gwt.user.client.ui.HasText;
|
| +import com.google.gwt.user.client.ui.TextArea;
|
| +
|
| +public interface ITextArea extends HasText, HasChangeHandlers {
|
| + public void setReadOnly(boolean readOnly);
|
| +
|
| + public static class TextAreaImpl extends TextArea implements ITextArea {}
|
| +}
|
|
|