@param notes the notes to set
(final String notes)
| 751 | |
| 752 | /** @param notes the notes to set */ |
| 753 | public void setNotes(final String notes) { |
| 754 | if (!this.notes.equals(notes)) { |
| 755 | this.notes = notes; |
| 756 | changed.put("notes", true); |
| 757 | } |
| 758 | } |
| 759 | |
| 760 | /** @param custom the custom key/value map */ |
| 761 | public void setCustom(final Map<String, String> custom) { |