introductionToProgramming/week10/company/Employee.java
Daniel Bulant c91fd07e47 week 10
2025-11-05 13:08:47 +01:00

22 lines
436 B
Java

public class Employee extends Person {
String jobTitle;
int salary;
public Employee(String name, int age, String jobTitle, int salary) {
super(name, age);
this.jobTitle = jobTitle;
this.salary = salary;
}
public String getJobTitle() {
return jobTitle;
}
public int getSalary() {
return salary;
}
public int getBaseSalary() {
return salary;
}
}