/Users/suziweissova/Desktop/School/Grade 11/Computer Science/Dossier for bro 56/src/dossier/pkgfor/bro/dueDatesInformation.java
 1 /*
 2  * To change this template, choose Tools | Templates
 3  * and open the template in the editor.
 4  */
 5 package dossier.pkgfor.bro;
 6 
 7 /**
 8  *
 9  * @author suziweissova
10  */
11 public class dueDatesInformation {
12     
13     private String taskToDo = "not set yet";        //Declares a string for task to do as unset.
14     private String startDate = "not set yet";       //Declares a string for start date of task as unset.
15     private String endDate = "not set yet";         //Declares a string for end date of task as unset.
16     private String importanceLevel = "not set yet"; //Declares a string for the importance level of the task as unset. 
17     
18     public dueDatesInformation (String taskToDo, String startDate, String endDate, String importanceLevel){
19         this.taskToDo = taskToDo;
20         this.startDate = startDate;
21         this.endDate = endDate;
22         this.importanceLevel = importanceLevel;
23     }
24     
25     public dueDatesInformation(){
26         
27     }
28     
29     public String gettaskToDo(){
30         return taskToDo;
31     }
32     
33     public String getstartDate(){
34         return startDate;
35     }
36     
37     public String getendDate(){
38         return endDate;
39     }
40     
41     public String getimportanceLevel(){
42         return importanceLevel;
43     }
44     
45     public void settaskToDo (String taskToDo){
46         this.taskToDo = taskToDo;
47     }
48     
49     public void setstartDate (String startDate){
50         this.startDate = startDate;
51     }
52     
53     public void setendDate (String endDate){
54         this.endDate = endDate;
55     }
56     
57     public void setimportanceLevel (String importanceLevel){
58         this.importanceLevel = importanceLevel;
59     }
60     
61     
62     
63 }
64