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.
-
PasswordDialog(Frame, String)
- Constructs a PasswordDialog object.
-
getSystemName()
- Returns the system name.
-
getUserId()
- Returns the user ID.
-
setSystemName(String)
- Sets the system name.
-
setUserId(String)
- Sets the user ID.
PasswordDialog
public PasswordDialog(Frame parent,
String titleText)
- Constructs a PasswordDialog object.
- Parameters:
- parent - The parent frame.
- titleText - The title text.
getSystemName
public String getSystemName()
- Returns the system name.
- Returns:
- The system name.
getUserId
public String getUserId()
- Returns the user ID.
- Returns:
- The user ID.
setSystemName
public void setSystemName(String systemName)
- Sets the system name.
- Parameters:
- systemName - The system name.
setUserId
public void setUserId(String userId)
- Sets the user ID.
- Parameters:
- userID - The user ID.
All Packages Class Hierarchy This Package Previous Next Index