All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.ibm.as400.access.PasswordDialog

java.lang.Object
   |
   +----java.awt.Component
           |
           +----java.awt.Container
                   |
                   +----java.awt.Window
                           |
                           +----java.awt.Dialog
                                   |
                                   +----com.ibm.as400.access.PasswordDialog

public class PasswordDialog
extends Dialog
The PasswordDialog class is a dialog for prompting end-users for a system name, a user ID, and/or a password. End-user programs will typically not need to use this class directly. Instead, such programs should allow the AS400 class to display the dialog when necessary.


Constructor Index

 o PasswordDialog(Frame, String)
Constructs a PasswordDialog object.

Method Index

 o getSystemName()
Returns the system name.
 o getUserId()
Returns the user ID.
 o setSystemName(String)
Sets the system name.
 o setUserId(String)
Sets the user ID.

Constructors

 o PasswordDialog
 public PasswordDialog(Frame parent,
                       String titleText)
Constructs a PasswordDialog object.

Parameters:
parent - The parent frame.
titleText - The title text.

Methods

 o getSystemName
 public String getSystemName()
Returns the system name.

Returns:
The system name.
 o getUserId
 public String getUserId()
Returns the user ID.

Returns:
The user ID.
 o setSystemName
 public void setSystemName(String systemName)
Sets the system name.

Parameters:
systemName - The system name.
 o setUserId
 public void setUserId(String userId)
Sets the user ID.

Parameters:
userID - The user ID.

All Packages  Class Hierarchy  This Package  Previous  Next  Index