@param name A descriptive name for the tree
(String name)
| 1244 | |
| 1245 | /** @param name A descriptive name for the tree */ |
| 1246 | public void setName(String name) { |
| 1247 | if (!this.name.equals(name)) { |
| 1248 | changed.put("name", true); |
| 1249 | this.name = name; |
| 1250 | } |
| 1251 | } |
| 1252 | |
| 1253 | /** @param description A brief description of the tree */ |
| 1254 | public void setDescription(String description) { |