A wrapper for the Swing JPasswordField class, adding an echo character
Copyright (c) Xoetrope Ltd., 1998-2004 License: see license.txt $Revision: 2.5 $
29303132333435363738
public InputWithPassword( PosScreen page) { super( page); this.savedInput = super.input; this.password = (XPassword)page.findComponent("pos_inputpassword"); if ( this.password == null) { this.password = new XPassword(); } this.password.setVisible(false); this.password.setFocusable(false); }
public InputWithPassword(PosScreen page) { super(page); this.savedInput = super.input; this.password = (XPassword)page.findComponent("pos_inputpassword"); if (this.password == null) { this.password = new XPassword(); } this.password.setVisible(false); this.password.setFocusable(false); }
public InputWithPassword( PosScreen page) { super( page); this.savedInput = super.input; this.password = (XPassword)page.findComponent("pos_inputpassword"); if( this.password == null) { this.password = new XPassword(); } this.password.setVisible(false); this.password.setFocusable(false); }