/Users/16671/Desktop/IA Computer Science/IA - Winner/src/ia/winner/Logs.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.winner;
 7 
 8 /**
 9  *
10  * @author 16671
11  */
12 public class Logs {
13     private String date = "not set yet";
14     private String name = "not set yet";
15     
16     public Logs(){
17         
18     }
19     
20     
21     public Logs(String date, String name){
22         this.date = date;
23         this.name = name;
24     }
25     
26     public void setDate(String date){
27         this.date = date;
28     }
29     
30     public String getDate(){
31         return date;
32     }
33     
34     public void setName(String name){
35         this.name = name;
36     }
37     
38     public String name(){
39         return name;
40     }
41     
42     
43     
44 }
45