Sets the entry comment. @exception IllegalArgumentException if comment is longer than 0xffff.
(String comment)
| 397 | * @exception IllegalArgumentException if comment is longer than 0xffff. |
| 398 | */ |
| 399 | public void setComment(String comment) |
| 400 | { |
| 401 | if (comment != null && comment.length() > 0xffff) |
| 402 | throw new IllegalArgumentException(); |
| 403 | this.comment = comment; |
| 404 | } |
| 405 | |
| 406 | /** |
| 407 | * Gets the comment. |