Advertisement
millsmih000

UltimateFrisbee_Coach.java

May 21st, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.28 KB | None | 0 0
  1. public class Coach extends Person {
  2.     private String role;
  3.     public Coach(String firstName, String lastName,String role) {
  4.         super(firstName,lastName);
  5.         this.role=role;
  6.     }
  7.     public String toString() {
  8.         String info=(super.toString()+"\n   Role: "+role);
  9.         return info;
  10.     }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement