Set this node's right node @param node the new right node @param index _KEY or _VALUE
(Node node, int index)
| 1917 | * @param index _KEY or _VALUE |
| 1918 | */ |
| 1919 | public void setRight(Node node, int index) |
| 1920 | { |
| 1921 | _right[ index ] = node; |
| 1922 | } |
| 1923 | |
| 1924 | /** |
| 1925 | * get the right node |
no outgoing calls
no test coverage detected