1 package persistence.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/license.html 6 * 7 */ 8 9 /**A linked list cell, which contains a ref to the object and next cell. 10 * The data,next members are public to this class, but not outside the 11 * collections.impl package. 12 * 13 * @author Terence Parr 14 * <a HREF=http://www.MageLang.com>MageLang Institute</a> 15 */ 16 class LLCell { 17 Object data; 18 LLCell next; 19 20 21 public LLCell(Object o) { 22 data = o; 23 } 24 } 25