get a node's parent. mind you, the node, or its parent, may not exist. no problem @param node the node (may be null) in question @param index _KEY or _VALUE
(Node node, int index)
| 660 | * @param index _KEY or _VALUE |
| 661 | */ |
| 662 | private static Node getParent(Node node, int index) |
| 663 | { |
| 664 | return ((node == null) ? null |
| 665 | : node.getParent(index)); |
| 666 | } |
| 667 | |
| 668 | /** |
| 669 | * get a node's right child. mind you, the node may not exist. no |
no test coverage detected