/Users/johnr/Dropbox/johnrayworth.info/largeFilesOutsideJSR/__IB-Other/Other/IA-Solutions-2019/Haruto/Product/IA.ver2/src/ia/ver2/Stats.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 Stats{
13     private String name = "not set yet"; 
14     
15     public Stats(){
16         
17     }
18     
19     public Stats(String name){
20         this.name = name;       
21     }
22     
23     public String getName(){
24         return name; 
25     }
26     
27     public void setName(String name){
28         this.name = name; 
29     }
30     
31 
32 }
33