Uses of Class
Server.User

Packages that use User
main   
Server   
 

Uses of User in main
 

Fields in main with type parameters of type User
 java.util.Hashtable<java.lang.String,User> Server.userTable
           
 

Uses of User in Server
 

Methods in Server with parameters of type User
 void Conversation.addUser(User newUser)
          Adds a user to a conversation.
 void Conversation.inviteUser(User newUser)
          Invite a user to a conversation.
 void Conversation.relayText(java.lang.String msg, User sender)
          Relays a String message to all Users in the conversation _except_ the sender
 void Conversation.removeUser(User user)
          Removes a user to a conversation.
 

Constructors in Server with parameters of type User
Conversation(User creator, Server server)