/Users/17763/Desktop/IA_Final_Submission_00889-0018/Product/IA_Netbeans_Project/src/ia/hokeun/InjuryAndTreatment.java
  1 /*
  2  * To change this license header, choose License Headers in Project Properties.
  3  * To change this template file, choose Tools | Templates
  4  * and open the template in the editor.
  5  */
  6 package ia.hokeun;
  7 
  8 /**
  9  *
 10  * @author 17763
 11  */
 12 public class InjuryAndTreatment {
 13     //Extensibility here is possible for those athletic trainers who are looking to keep track of more information
 14     private String injuryBodyPart = "not set yet";
 15     private String injuryType = "not set yet";
 16     private String injuryEvaluation = "not set yet";
 17     private String injuryDay = "not set yet";
 18     private String injuryMonth = "not set yet";
 19     private String injuryYear = "not set yet";
 20     private String treatmentType = "not set yet";
 21     private String treatmentNotes = "not set yet";
 22     
 23     public InjuryAndTreatment(){
 24     }
 25     
 26     public InjuryAndTreatment(String injuryBodyPart, String injuryType, String injuryEvaluation, String injuryDay, String injuryMonth, String injuryYear, String treatmentType, String treatmentNotes){
 27         this.injuryBodyPart = injuryBodyPart;
 28         this.injuryType = injuryType;
 29         this.injuryEvaluation = injuryEvaluation;
 30         this.injuryDay = injuryDay;
 31         this.injuryMonth = injuryMonth;
 32         this.injuryYear = injuryYear;
 33         this.treatmentType = treatmentType;
 34         this.treatmentNotes = treatmentNotes;
 35     }
 36     
 37     public void setInjuryBodyPart(String injuryBodyPart){
 38         this.injuryBodyPart = injuryBodyPart;
 39     }
 40     
 41     public void setInjuryType(String injuryType){
 42         this.injuryType = injuryType;
 43     }
 44     
 45     public void setInjuryEvaluation(String injuryEvaluation){
 46         this.injuryEvaluation = injuryEvaluation;
 47     }
 48     
 49     public void setInjuryDay(String injuryDay){
 50         this.injuryDay = injuryDay;
 51     }
 52     
 53     public void setInjuryMonth(String injuryMonth){
 54         this.injuryMonth = injuryMonth;
 55     }
 56     
 57     public void setInjuryYear(String injuryYear){
 58         this.injuryYear = injuryYear;
 59     }
 60     
 61     public void setTreatmentType(String treatmentType){
 62         this.treatmentType = treatmentType;
 63     }
 64     
 65     public void setTreatmentNotes(String treatmentNotes){
 66         this.treatmentNotes = treatmentNotes;
 67     }
 68     
 69     public String getInjuryBodyPart() {
 70         return injuryBodyPart;
 71     }
 72     
 73     public String getInjuryType() {
 74         return injuryType;
 75     }
 76     
 77     public String getInjuryEvaluation() {
 78         return injuryEvaluation;
 79     }
 80     
 81     public String getInjuryDay() {
 82         return injuryDay;
 83     }
 84     
 85     public String getInjuryMonth() {
 86         return injuryMonth;
 87     }
 88     
 89     public String getInjuryYear() {
 90         return injuryYear;
 91     }
 92     
 93     public String getTreatmentType() {
 94         return treatmentType;
 95     }
 96     
 97     public String getTreatmentNotes() {
 98         return treatmentNotes;
 99     }
100 }
101