com.sptci.echo2
Class LoginPaneController.UserNameListener

java.lang.Object
  extended by com.sptci.echo2.LoginPaneController.UserNameListener
All Implemented Interfaces:
Serializable, EventListener, ActionListener
Enclosing class:
LoginPaneController

public class LoginPaneController.UserNameListener
extends Object
implements ActionListener

An action listener that transfers control from the LoginPane.userName field to the LoginPane.password field.

See Also:
Serialized Form

Constructor Summary
LoginPaneController.UserNameListener()
           
 
Method Summary
 void actionPerformed(ActionEvent event)
          The action listener implementation.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

LoginPaneController.UserNameListener

public LoginPaneController.UserNameListener()
Method Detail

actionPerformed

public void actionPerformed(ActionEvent event)
The action listener implementation. Transfer control to the LoginPane.password field on Controller.view if LoginPaneController.checkUserName() returns true. Sub-classes that need different checks on the value should override this method or LoginPaneController.checkUserName() as appropriate.

Specified by:
actionPerformed in interface ActionListener