1 package antlr.collections.impl; 2 3 /* ANTLR Translator Generator 4 * Project led by Terence Parr at http://www.jGuru.com 5 * Software rights: http://www.antlr.org/RIGHTS.html 6 * 7 * $Id: //depot/code/org.antlr/main/main/antlr/collections/impl/LLCell.java#4 $ 8 */ 9 10 /**A linked list cell, which contains a ref to the object and next cell. 11 * The data,next members are public to this class, but not outside the 12 * collections.impl package. 13 * 14 * @author Terence Parr 15 * <a HREF=http://www.MageLang.com>MageLang Institute</a> 16 */ 17 class LLCell { 18 Object data; 19 LLCell next; 20 21 22 public LLCell(Object o) { 23 data = o; 24 } 25 } 26