@@ -13,6 +13,8 @@ public class Strategy extends HashMap<String, Integer> {
13
13
public final static String st = "st" ;
14
14
public final static String hx = "hx" ;
15
15
public final static String hwq = "hwq" ;
16
+ public final static String ho = "ho" ;
17
+ public final static String hoshw = "hoshw" ;
16
18
17
19
public Integer getDef () {
18
20
return super .get (Strategy .def );
@@ -79,19 +81,35 @@ public void setSt(Integer st) {
79
81
}
80
82
81
83
public Integer getHx () {
82
- return ( Integer ) super .get (Strategy .hx );
84
+ return super .get (Strategy .hx );
83
85
}
84
86
85
87
public void setHx (Integer hx ) {
86
88
super .put (Strategy .hx , hx );
87
89
}
88
90
89
91
public Integer getHwq () {
90
- return ( Integer ) super .get (Strategy .hwq );
92
+ return super .get (Strategy .hwq );
91
93
}
92
94
93
95
public void setHwq (Integer hwq ) {
94
96
super .put (Strategy .hwq , hwq );
95
97
}
96
98
99
+ public Integer getHo () {
100
+ return super .get (Strategy .ho );
101
+ }
102
+
103
+ public void setHo (Integer ho ) {
104
+ super .put (Strategy .ho , ho );
105
+ }
106
+
107
+ public Integer getHoshw () {
108
+ return super .get (Strategy .hoshw );
109
+ }
110
+
111
+ public void setHoshw (Integer hoshw ) {
112
+ super .put (Strategy .hoshw , hoshw );
113
+ }
114
+
97
115
}
0 commit comments