MCPcopy Index your code
hub / github.com/OpenTSDB/opentsdb / setNotes

Method setNotes

src/tree/Tree.java:1262–1267  ·  view source on GitHub ↗

@param notes Optional notes about the tree

(String notes)

Source from the content-addressed store, hash-verified

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 */

Callers 4

buildTestTreeMethod · 0.95
parseTreeV1Method · 0.95
parseTreeMethod · 0.95
copyConstructorMethod · 0.45

Calls 2

putMethod · 0.80
equalsMethod · 0.45

Tested by 2

buildTestTreeMethod · 0.76
copyConstructorMethod · 0.36