Serialized Form

Class Chat.AWTConsole implements Serializable

Serialized Fields

textArea

java.awt.TextArea textArea
The main text area for received messages.

inputField

java.awt.TextField inputField
The input field for outgoing message to be sent.

userList

java.awt.List userList
The list of other users on the net.

connectButton

java.awt.Button connectButton
A button for appropriate console command.

disconnectButton

java.awt.Button disconnectButton
A button for appropriate console command.

setupButton

java.awt.Button setupButton
A button for appropriate console command.

clearButton

java.awt.Button clearButton
A button for appropriate console command.

ready

boolean ready
Shows whether a message/command is ready to be read by Sender thread .

line

java.lang.String line
Stores a line to be read by Sender thread .


Class Chat.AWTConsole.Connect implements Serializable

Serialized Fields

this$0

AWTConsole this$0

urlField

java.awt.TextField urlField
Stored reference to appropriate textfield.

roomField

java.awt.TextField roomField
Stored reference to appropriate textfield.

hostField

java.awt.TextField hostField
Stored reference to appropriate textfield.

portField

java.awt.TextField portField
Stored reference to appropriate textfield.

methodGroup

java.awt.CheckboxGroup methodGroup
A checkbox group representing the two connect methods.

url

java.lang.String url
Holds a returned value after the dialog is dismissed by OK button.

room

java.lang.String room
Holds a returned value after the dialog is dismissed by OK button.

nick

java.lang.String nick
Holds a returned value after the dialog is dismissed by OK button.

host

java.lang.String host
Holds a returned value after the dialog is dismissed by OK button.

port

int port


Class Chat.AWTConsole.Setup implements Serializable

Serialized Fields

this$0

AWTConsole this$0

nickField

java.awt.TextField nickField
Stored reference to appropriate textfield.

hostField

java.awt.TextField hostField
Stored reference to appropriate textfield.

portField

java.awt.TextField portField
Stored reference to appropriate textfield.

nick

java.lang.String nick
Holds a returned value after the dialog is dismissed by OK button.

host

java.lang.String host
Holds a returned value after the dialog is dismissed by OK button.

port

int port


Class Chat.BasicWindow implements Serializable


Class Chat.HostList implements Serializable

Serialized Fields

console

Console console
A link to the console - used solely for updating the user list.

nicks

java.util.TreeSet nicks
A separately maintained list of nicknames for updating the console user list.

me

HostList.HostItem me
Information about this (local) user.


Class Chat.StandardDialog implements Serializable

Serialized Fields

gridbag

java.awt.GridBagLayout gridbag
The window layout used by the dialog.