1: private NodePair findNode(T entry)
2: {
3: NodePair result = new NodePair();
4: boolean found = false;
5:
6: // . . .
7:
8: if (found)
9: result = new NodePair(currentNode, parentNode);
10: // Located entry is currentNode.getData()
11:
12: return result;
13: } // end findNode
14: // Version 4.0