01: /*
02: * Created on 08-May-2004
03: *
04: */
05: package com.jofti.btree;
06:
07: /**
08: * A wrapper for a node that allows us distinguish between sibling right nodes and child nodes of nodes. <p>
09: * @author Steve Woodcock
10: * @version 1.0<br>
11: */
12: public class NodeLink {
13:
14: private Node node;
15:
16: /**
17: * @return Returns the node.
18: */
19: public INode getNode() {
20: return node;
21: }
22:
23: /**
24: * @param node The node to set.
25: */
26: public void setNode(Node node) {
27: this.node = node;
28: }
29:
30: }
|