package myfirstlinkedlist;

/**
 * Title:        My First Linked List
 * Description:  Example of a linked list implementation
 * Copyright:    Copyright (c) 2001
 * Company:
 * @author Burton Rosenberg
 * @version 1.0
 */

public class Node {

  Node next ;
  String content ;

  public Node() {
  }
}