/Users/johnr/Dropbox/johnrayworth.info/largeFilesOutsideJSR/__IB-Other/Other/IA-Solutions-2019/Haruto/Product/IA.ver2/src/ia/ver2/Rank.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 Rank {
13     private String rankObj = "not set yet"; 
14     private int rankNum = 0; 
15     
16     public Rank(){
17         
18     }
19 
20     public Rank(String rankObj, int rankNum) {
21         this.rankObj = rankObj; 
22         this.rankNum = rankNum; 
23     }
24     
25    
26     
27     public String getRankObj(){
28         return rankObj; 
29     }
30     
31     public int getRankNum(){
32         return rankNum; 
33     }
34     
35     public void setRankObj(String rankObj){
36         this.rankObj = rankObj; 
37     }
38     
39     public void setRankNum(int rankNum){
40         this.rankNum = rankNum; 
41     }
42     
43 }
44