01: package net.xoetrope.awt;
02:
03: import java.awt.TextArea;
04:
05: import net.xoetrope.xui.XTextHolder;
06:
07: /**
08: * <p>A wrapper for the AWT TextField class</p>
09: * <p>Copyright (c) Xoetrope Ltd., 1998-2004<br>
10: * License: see license.txt
11: * $Revision: 1.4 $
12: */
13: public class XTextArea extends TextArea implements XTextHolder {
14: public XTextArea() {
15: super .setText("sdfadf");
16: }
17: }
|