Sets the extra data. @exception IllegalArgumentException if extra is longer than 0xffff bytes.
(byte[] extra)
| 326 | * @exception IllegalArgumentException if extra is longer than 0xffff bytes. |
| 327 | */ |
| 328 | public void setExtra(byte[] extra) |
| 329 | { |
| 330 | if (extra == null) |
| 331 | { |
| 332 | this.extra = null; |
| 333 | return; |
| 334 | } |
| 335 | if (extra.length > 0xffff) |
| 336 | throw new IllegalArgumentException(); |
| 337 | this.extra = extra; |
| 338 | } |
| 339 | |
| 340 | private void parseExtra() |
| 341 | { |
no outgoing calls
no test coverage detected