Returns the first record in the QUESTION section. @see Record @see Section
()
| 262 | * @see Section |
| 263 | */ |
| 264 | public Record |
| 265 | getQuestion() { |
| 266 | List l = sections[Section.QUESTION]; |
| 267 | if (l == null || l.size() == 0) |
| 268 | return null; |
| 269 | return (Record) l.get(0); |
| 270 | } |
| 271 | |
| 272 | /** |
| 273 | * Returns the TSIG record from the ADDITIONAL section, if one is present. |
no test coverage detected