first commit

This commit is contained in:
Boris
2024-01-15 20:14:10 +00:00
commit 8c81ee28b7
3106 changed files with 474415 additions and 0 deletions

View File

@@ -0,0 +1,56 @@
/**
* A class representing staff members for a simple BlueJ demo program.
*
* @author Michael Kolling
* @version 1.0, January 1999
*/
class Staff extends Person
{
private String room;
/**
* Create a staff member with default settings for detail information.
*/
Staff()
{
super("(unknown name)", 0000);
room = "(unknown room)";
}
/**
* Create a staff member with given name, year of birth and room
* number.
*/
Staff(String name, int yearOfBirth, String roomNumber)
{
super(name, yearOfBirth);
room = roomNumber;
}
/**
* Set a new room number for this person.
*/
public void setRoom(String newRoom)
{
room = newRoom;
}
/**
* Return the room number of this person.
*/
public String getRoom()
{
return room;
}
/**
* Return a string representation of this object.
*/
public String toString() // redefined from "Person"
{
return super.toString() +
"Staff member\n" +
"Room: " + room + "\n";
}
}