ProjectObject 64f30b6304532
ProjectObject 64f30b6304532
1. Class Person
class Person {
private int ID;
private String name;
private int age;
// Getter methods
public int getID() {
return ID;
}
// Setter methods
public void setID(int ID) {
this.ID = ID;
}
public Lecturer(int ID, String name, int age, double salary, String faculty)
{
super(ID, name, age);
this.salary = salary;
this.faculty = faculty;
}
// Getter methods
public double getSalary() {
return salary;
}
// Setter methods
public void setSalary(double salary) {
this.salary = salary;
}
public Student(int ID, String name, int age, double GPA, String major) {
super(ID, name, age);
this.GPA = GPA;
this.major = major;
}
// Getter methods
public double getGPA() {
return GPA;
}
// Setter methods
public void setGPA(double GPA) {
this.GPA = GPA;
}