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, adding an echo character</p>
08: * <p>Copyright: Copyright (c) Xoetrope Ltd., 1998-2003<br>
09: * License: see license.txt
10: * @version $Revision: 1.1 $
11: */
12: public class XPassword extends TextField implements XTextHolder {
13: public XPassword() {
14: super ();
15: setEchoChar('*');
16: }
17: }
|