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