@param notes optional notes
(final String notes)
| 586 | |
| 587 | /** @param notes optional notes */ |
| 588 | public void setNotes(final String notes) { |
| 589 | if (!this.notes.equals(notes)) { |
| 590 | changed.put("notes", true); |
| 591 | this.notes = notes; |
| 592 | } |
| 593 | } |
| 594 | |
| 595 | /** @param custom the custom to set */ |
| 596 | public void setCustom(final Map<String, String> custom) { |
no test coverage detected