@param description an optional description of the UID
(final String description)
| 578 | |
| 579 | /** @param description an optional description of the UID */ |
| 580 | public void setDescription(final String description) { |
| 581 | if (!this.description.equals(description)) { |
| 582 | changed.put("description", true); |
| 583 | this.description = description; |
| 584 | } |
| 585 | } |
| 586 | |
| 587 | /** @param notes optional notes */ |
| 588 | public void setNotes(final String notes) { |
no test coverage detected