/** * CharNode * * A node class for use in the linked list class CharList. * This class can be declared inside the CharList class, instead * of in a separate file like this. If I forget to show you * how that's done, remind me. * * @author Jeff Ondich (so far) * */ class CharNode { public char data; public CharNode next; public CharNode( char ch ) { data = ch; next = null; } }