/Users/19826/Downloads/IA - Brian/src/ia/brian/TimeTable.java
 1 package ia.brian;
 2 
 3 /*
 4  * To change this license header, choose License Headers in Project Properties.
 5  * To change this template file, choose Tools | Templates
 6  * and open the template in the editor.
 7  */
 8 
 9 /**
10  *
11  * @author 19826
12  */
13 public class TimeTable {
14     private String day = "not set yet";
15     private double startTime = -9.99;
16     private double endTime = -9.99;
17     
18     public TimeTable(){
19         
20     }
21     
22     public TimeTable(String day, double startTime, double endTime){
23         this.day = day;
24         this.startTime = startTime;
25         this.endTime = endTime;
26     }
27     
28     public void setDay(String day){
29         this.day = day;
30     }
31     
32     public void setStartTime(double startTime){
33         this.startTime = startTime;
34     }
35     
36     public void setEndTime(double endTime){
37         this.endTime = endTime;
38     }
39     
40     public String getDay(){
41         return day;
42     }
43     
44     public double getStartTime(){
45         return startTime;
46     }
47     
48     public double getEndTime(){
49         return endTime;
50     }
51     
52     
53 }
54