Adds the given value to this tree.
(V newValue)
| 57 | * Adds the given value to this tree. |
| 58 | */ |
| 59 | public void put(V newValue) { |
| 60 | put(newValue.getKey(), newValue); |
| 61 | } |
| 62 | |
| 63 | /** |
| 64 | * Looks up all values in this tree that have the given prefix. |
no test coverage detected