-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDataTableRowSim.java
71 lines (69 loc) · 2.07 KB
/
DataTableRowSim.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/**
*
* @author elmo
*/
public class DataTableRowSim {
String BIA;
String realBTA;
String hitmissBTB;
String BTBBIA;
String BTBBTA;
String BHSR; //portato a stringa per vedere ogni singolo bit
String numberPHT;
String indexPHT;
String FSM;
String DirPred;
String newBHSR;
String newFSM;
DataTableRowSim(String BIA, String realBTA, String hitmissBTB, String BTBBIA, String BTBBTA, String BHSR,
String numberPHT, String indexPHT, String FSM, String DirPred, String newBHSR, String newFSM){
this.BIA = BIA;
this.realBTA = realBTA;
this.hitmissBTB = hitmissBTB;
this.BTBBIA = BTBBIA;
this.BTBBTA = BTBBTA;
this.BHSR = BHSR;
this.numberPHT = numberPHT;
this.indexPHT = indexPHT;
this.FSM = FSM;
this.DirPred = DirPred;
this.newBHSR = newBHSR;
this.newFSM = newFSM;
}//senza i seguenti apparentemente inutili getter la tabella non viene caricata. Inoltre, la parola che segue "get" deve essere maiuscola
public String getBIA(){
return BIA;
}
public String getRealBTA(){
return realBTA;
}
public String getHitmissBTB(){
return hitmissBTB;
}
public String getBTBBIA(){
return BTBBIA;
}
public String getBTBBTA(){
return BTBBTA;
}
public String getBHSR(){
return BHSR;
}
public String getNumberPHT(){
return numberPHT;
}
public String getIndexPHT(){
return indexPHT;
}
public String getFSM(){
return FSM;
}
public String getDirPred(){
return DirPred;
}
public String getNewBHSR(){
return newBHSR;
}
public String getNewFSM(){
return newFSM;
}
}