@param notes Optional notes about the tree
(String notes)
| 1260 | |
| 1261 | /** @param notes Optional notes about the tree */ |
| 1262 | public void setNotes(String notes) { |
| 1263 | if (!this.notes.equals(notes)) { |
| 1264 | changed.put("notes", true); |
| 1265 | this.notes = notes; |
| 1266 | } |
| 1267 | } |
| 1268 | |
| 1269 | /** @param strict_match Whether or not a TSUID must match all rules in the |
| 1270 | * tree to be included */ |