/Users/johnr/Dropbox/johnrayworth.info/largeFilesOutsideJSR/__IB-Other/Other/IA-Solutions-2019/Haruto/Product/IA.ver2/src/ia/ver2/Task.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.ver2;
 7 
 8 /**
 9  *
10  * @author 19196
11  */
12 public class Task {
13     private String personName = "not set yet";
14     private String task = "not set yet"; 
15     private String date = "not set yet"; 
16     
17     public Task(){
18         
19     }
20     
21     public Task(String personName, String date, String task){
22         this.personName = personName; 
23         this.date = date; 
24         this.task = task; 
25     }
26     
27     public String getPersonName(){
28         return personName; 
29     }
30     
31     public String getTask(){
32         return task; 
33     }
34     
35     public String getDate(){
36         return date; 
37     }
38     
39     public void setPersonName(String personName){
40         this.personName = personName; 
41     }
42     
43     public void setTask(String task){
44         this.task = task; 
45     }
46     
47     public void setDate(String date){
48         this.date = date; 
49     }
50             
51 }
52