DAT
Class LinkChar

java.lang.Object
  extended by DAT.LinkChar

public class LinkChar
extends java.lang.Object

A link used to (recursively) construct a linked list of chars.


Field Summary
 char item
          Item stored in this link.
 LinkChar successor
          Reference to the rest of the list.
 
Constructor Summary
LinkChar(char c, LinkChar s)
          Create a new link.
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

item

public char item
Item stored in this link.


successor

public LinkChar successor
Reference to the rest of the list.

Constructor Detail

LinkChar

public LinkChar(char c,
                LinkChar s)
Create a new link.