Guest User

Untitled

a guest
Feb 23rd, 2018
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. public abstract class Employee extends Person {
  2.  
  3. private String jobtitle;
  4.  
  5. public String getJobtitle() {
  6. return jobtitle;
  7. }
  8.  
  9. public void setJobtitle(String jobtitle) {
  10. this.jobtitle = jobtitle;
  11. }
  12.  
  13. public abstract float calculateSalary();
  14. }
Add Comment
Please, Sign In to add comment