Home | History | Annotate | Download | only in afe
      1 package autotest.afe;
      2 
      3 import com.google.gwt.event.dom.client.HasChangeHandlers;
      4 import com.google.gwt.user.client.ui.HasText;
      5 import com.google.gwt.user.client.ui.TextArea;
      6 
      7 public interface ITextArea extends HasText, HasChangeHandlers {
      8     public void setReadOnly(boolean readOnly);
      9 
     10     public static class TextAreaImpl extends TextArea implements ITextArea {}
     11 }
     12