Removes all records from a section of the Message, and adjusts the header. @see Record @see Section
(int section)
| 197 | * @see Section |
| 198 | */ |
| 199 | public void |
| 200 | removeAllRecords(int section) { |
| 201 | sections[section] = null; |
| 202 | header.setCount(section, 0); |
| 203 | } |
| 204 | |
| 205 | /** |
| 206 | * Determines if the given record is already present in the given section. |
no test coverage detected