public interface Node161 { // Return the data item stored in this Node. public T getItem(); // Set the data item for this Node. public void setItem(T x); // Return the next Node reference stored in this Node. public Node getNext(); // Set the next Node reference for this node. public void setNext(Node n); // Return the result of the toString method applied to the data item of this Node. public String toString(); }