Counts TODO for the project at a given state. @param __tag The tag of the date. @param __name The name of the project. @param __n The number of TODOs. @throws NullPointerException On null arguments. @since 2018/03/29
(String __tag, String __name, int __n)
| 238 | * @since 2018/03/29 |
| 239 | */ |
| 240 | public void count(String __tag, String __name, int __n) |
| 241 | throws NullPointerException |
| 242 | { |
| 243 | this.lastname = __name + "@" + |
| 244 | String.format("%08x", __hashUUID(this.uuid)); |
| 245 | this.counts.put(__tag, __n); |
| 246 | |
| 247 | TodoProgression.this.tags.add(__tag); |
| 248 | } |
| 249 | } |
| 250 | } |
| 251 |
no test coverage detected