Advertisement
Guest User

Untitled

a guest
Jan 19th, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. public class CrewMember {
  2. public enum FlightCrewJob{
  3. Pilot,
  4. CoPilot,
  5. FlightAttendant,
  6. AirMarshal
  7. }
  8. private FlightCrewJob job;
  9.  
  10. public CrewMember(FlightCrewJob job){
  11. this.job = job;
  12. }
  13. public void setJob(FlightCrewJob job){
  14. this.job = job;
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement