@@ -13,6 +13,8 @@ public class Strategy extends HashMap<String, Integer> {
1313 public final static String st = "st" ;
1414 public final static String hx = "hx" ;
1515 public final static String hwq = "hwq" ;
16+ public final static String ho = "ho" ;
17+ public final static String hoshw = "hoshw" ;
1618
1719 public Integer getDef () {
1820 return super .get (Strategy .def );
@@ -79,19 +81,35 @@ public void setSt(Integer st) {
7981 }
8082
8183 public Integer getHx () {
82- return ( Integer ) super .get (Strategy .hx );
84+ return super .get (Strategy .hx );
8385 }
8486
8587 public void setHx (Integer hx ) {
8688 super .put (Strategy .hx , hx );
8789 }
8890
8991 public Integer getHwq () {
90- return ( Integer ) super .get (Strategy .hwq );
92+ return super .get (Strategy .hwq );
9193 }
9294
9395 public void setHwq (Integer hwq ) {
9496 super .put (Strategy .hwq , hwq );
9597 }
9698
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+
97115}
0 commit comments