[operations] [attributes] [fields] [template] [definition]
[implementation] [documentation]
To use the search tool you need to use a browser which supports JAVA (c)

[next] [prev] [superclass] [next peer] [prev peer] [subclass] [index] [hierarchy]

HasAccountInfo

mixes in with Object

HasAccountInfo



Operations

Get list of all operations

Class HasAccountInfo defines no new operations.


Attributes

Get list of all attributes

AccountName
HiddenPassword
Password
PromptForPassword


Fields

Field Type
HasAccountInfo: accountName: Text
password: Text
promptForPassword: Boolean


Instance template

Class HasAccountInfo cannot be instantiated.


Class definition

Define Class HasAccountInfo;
    mixes in with Object;

    field accountName: Text, getter, setter;
    field password: Text, getter, setter;
    field promptForPassword: Boolean, getter, setter;

    attribute AccountName: Text;
    attribute Password: Text;
    attribute HiddenPassword: Text;
        // getter returns a version of the password with bullets in 
        // place of the characters.  Setter just calls SetPassword.
        // This attribute should be used whenever displaying the password.
    attribute PromptForPassword: Boolean;
end class;