예제 #1
0
 /**
  * Convenience ctor to create a Node<T> with an instance of T.
  *
  * @param data an instance of T.
  */
 public Node(T data) {
   this();
   setData(data);
 }