Report on the dependencies of the bonus. @return String the dependancies
()
| 170 | * @return String the dependancies |
| 171 | */ |
| 172 | public String listDependsMap() |
| 173 | { |
| 174 | StringBuilder buff = new StringBuilder("["); |
| 175 | for (String key : dependMap.keySet()) |
| 176 | { |
| 177 | if (buff.length() > 1) |
| 178 | { |
| 179 | buff.append(", "); |
| 180 | } |
| 181 | buff.append(key); |
| 182 | } |
| 183 | buff.append("]"); |
| 184 | return buff.toString(); |
| 185 | } |
| 186 | |
| 187 | /** |
| 188 | * @return type of Bonus |
no test coverage detected