/Users/johnr/Desktop/IA_14_-_Stage_P_Upload_all_2021-04-08/IBCSIA21296 Isaac/src/fitnesstracker/Schedule.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 fitnesstracker;
 7 
 8 /**
 9  *
10  * @author 21296
11  */
12 public class Schedule {
13     private String date = "not set yet";
14     private String name = "not set yet";
15     
16     public Schedule(){
17     
18     }
19     
20     public Schedule(String date, String name){
21     this.date = date;
22     this.name = name;
23     }
24     
25     public void setDate(String date){
26     this.date = date;
27     }
28     
29     public String getDate(){
30     return date;
31     }
32     
33     public void setName(String Name){
34     this.name = name;
35     }
36     
37     public String getName(){
38     return name;
39     }
40 }
41 
42