/Users/johnr/Dropbox/johnrayworth.info/largeFilesOutsideJSR/__IB-Other/Other/IA-Solutions-2019/Haruto/Product/IA.ver2/src/ia/ver2/PersonInfo.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 PersonInfo {
13     private String person = "not set yet"; 
14     private String nickName = "not set yet"; 
15     private String age = "not set yet"; 
16     
17     public PersonInfo(){
18         
19     }
20     
21     public PersonInfo(String person, String nickName, String age){
22         this.person = person; 
23         this.nickName = nickName; 
24         this.age = age; 
25     }
26     
27     public String getPerson(){
28         return person; 
29     }
30     
31     public String getNickName(){
32         return nickName; 
33     }
34     
35     public String getAge(){
36         return age; 
37     }
38     
39     public void setPerson(String person){
40         this.person = person; 
41     }
42     
43     public void setNickName(String nickName){
44         this.nickName = nickName; 
45     }
46     
47     public void setAge(String age){
48         this.age = age; 
49     }
50 }
51