Modifier and Type | Field and Description |
---|---|
private java.util.ArrayList<Person> |
Meeting.attendees |
private java.util.ArrayList<Person> |
Organization.employees
This class is used to initialize and store a list of employees
and rooms available for meetings.
|
Modifier and Type | Method and Description |
---|---|
Person |
Organization.getEmployee(java.lang.String name)
Search for and retrieve a person.
|
Modifier and Type | Method and Description |
---|---|
java.util.ArrayList<Person> |
Meeting.getAttendees() |
java.util.ArrayList<Person> |
Organization.getEmployees() |
Modifier and Type | Method and Description |
---|---|
void |
Meeting.addAttendee(Person attendee)
Add an attendee to the meeting.
|
void |
Meeting.removeAttendee(Person attendee)
Removes an attendee from the meeting.
|
Constructor and Description |
---|
Meeting(int month,
int day,
int start,
int end,
java.util.ArrayList<Person> attendees,
Room room,
java.lang.String description)
More detailed constructor
|