- getAllUsers() - Method in class Config
-
returns the list of the global contacts
- getBroadcastListFromNickname(List<BroadcastList>, String) - Static method in class Helper
-
Given a nickname as a String return the BroadcastList from the List of
BroadcastLists
- getBroadcastLists() - Method in class User
-
A getter for the list of broadcast lists owned by this user
- getBroadcastNickname() - Method in class Message
-
A getter for the broadcastNickname
- getConsoleInput() - Method in class Config
-
returns the only way you can obtain input from the keyboard (its a
Scanner)
- getConsoleOutput() - Method in class Config
-
returns the only way you can write output to screen (its a PrintStream)
- getCurrentUser() - Method in class Config
-
returns the currently logged in user object
- getFirstName() - Method in class User
-
A getter for the first name
- getFriends() - Method in class User
-
A getter for the list of friends of this user
- getFromNickname() - Method in class Message
-
A getter for the fromNickname
- getInstance() - Static method in class Config
-
This static method is used to return the only instance existing for the
Config class
- getLastName() - Method in class User
-
a getter to return the last name
- getMembers() - Method in class BroadcastList
-
A getter of the list of members of this broadcast list
- getMessage() - Method in class Message
-
A getter for the message string
- getMessages() - Method in class User
-
A getter for the list of all the user messages both sent and received
- getNickname() - Method in class BroadcastList
-
A getter of the nickname
- getNickname() - Method in class User
-
A getter for the nickname
- getPassword() - Method in class User
-
A getter for the user password
- getSentTime() - Method in class Message
-
A getter for the time at which this message was sent
- getToNickname() - Method in class Message
-
A getter for the toNickname
- getUserFromNickname(List<User>, String) - Static method in class Helper
-
Given a nickname as a String return the User object from the List of
Users
- search(String, boolean) - Static method in class CommandProcessor
-
Method to do a user search.
- sendMessage(String, String) - Static method in class CommandProcessor
-
A method to send a message.
- setAllUsers(List<User>) - Method in class Config
-
sets the list of global users
- setBroadcastLists(List<BroadcastList>) - Method in class User
-
A setter for the list of broadcast lists owned by this user
- setBroadcastNickname(String) - Method in class Message
-
A setter for the broadcastNickname
- setConsoleInput(Scanner) - Method in class Config
-
a setter for the Scanner object that should be used to obtain input from
the keyboard
- setConsoleOutput(PrintStream) - Method in class Config
-
a setter for the PrintStream object that should be used to write to the
screen
- setCurrentUser(User) - Method in class Config
-
sets the currently logged in user object.
- setFirstName(String) - Method in class User
-
A setter for the first name
- setFriends(List<User>) - Method in class User
-
A setter for the list of all friends of this user
- setFromNickname(String) - Method in class Message
-
A setter for the fromNickname
- setLastName(String) - Method in class User
-
A setter for the last name
- setMembers(List<String>) - Method in class BroadcastList
-
A setter of the list of members of this broadcast list
- setMessage(String) - Method in class Message
-
A setter for the message string
- setMessages(List<Message>) - Method in class User
-
A setter for the list of all the user messages
- setNickname(String) - Method in class BroadcastList
-
A setter of the nickname of this broadcast list
- setNickname(String) - Method in class User
-
A setter for the nickname
- setPassword(String) - Method in class User
-
A setter for the use password
- setRead(boolean) - Method in class Message
-
A setter for the read flag which indicates whether the message has been
read
- setSentTime(Date) - Method in class Message
-
A setter for the time at which this message was sent
- setToNickname(String) - Method in class Message
-
A setter for the toNickname
- SOMETHING_EXISTS - Static variable in class Config
-
This is shown if another user with the same nickname already exists
- SUCCESSFULLY_ADDED - Static variable in class Config
-
This is shown as part of various add operations that may be performed as
part of commands
- SUCCESSFULLY_LOGGED_IN - Static variable in class Config
-
This is shown if the user provides valid credentials
- SUCCESSFULLY_LOGGED_OUT - Static variable in class Config
-
This is shown after a logout: command is issued by a logged in user
- SUCCESSFULLY_REMOVED - Static variable in class Config
-
This is shown as part of various removal operations that may be performed
as part of commands